Now, in Debugging mode, I have a std::vector vec which contains 100 elements, I'm curious to know whether it's possible to edit these 100 elements at the same time, for instance, make all of them to 1.
The scenario why I have to do that: my project is huge, about 140 thousands lines of codes. Each time I build them, it spend me at least 30 minutes. My project is make up of static libs and one EXE.
Finally, the question i'm asking is VC++ debugging mode: batch edit std::vector value?
*So, don't give me suggestion about my project.*
Anybody can help me?
Update: What I mean is edit its value in the Watch window. Don't mention my project and build time.
Open vec in watch window, and send keys "{F2}value{Enter}" multiple times by keyboard macro(e.g. AutoHotKey), then values are changed.