I am having a problem which I can’t quite understand.
I put a breakpoint in one page, and when I debug, another break points appear from another .cpp.
Does anyone know what could be the source of the problem here?
Please help.
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I can think of 2 possible causes, but it’s not really a problem:
The compiler inlines function, so when you set a breakpoint in that function, it automatically sets breakpoints to wherever it is encountered.
The optimizer squeezed more methods in the same location, so all could be marked.
Will add more if I can think of any.