I am developing an OpenCV application and I need to debug my code (Visual studio 2010, opencv with cmake).
I would like to debug line by line to see exactly where my application crashes. I am trying to use F11 , the problem is that F11 is showing me external code (opencv libraries, std libraries, etc.).
Is there any other way not to put many breakpoints throughout my code?
int main(void) { vector<int> myVec; myVec.push_back(1);
If I try F11 with this code, visual studio will also debug the vector library files, and I want to avoid this. I just want to monitor the flow of code inside my main ();
source share