Discussion:
Breakpoints stopped working
(too old to reply)
Neil B
2007-04-21 14:04:02 UTC
Permalink
All of a sudden the breakpoint feature of the debugger stopped working.

I can set the breakpoints on a line of code okay. The red dot appears to the
left of the line. But no matter where it put them in the code they are
ignored. I'm compiled in debug mode.

Where do you start to look for problems that could cause this????

Thanks, Neil
John Dallman
2007-04-21 14:28:00 UTC
Permalink
Post by Neil B
I can set the breakpoints on a line of code okay. The red dot appears
to the left of the line. But no matter where it put them in the code
they are ignored. I'm compiled in debug mode.
Where do you start to look for problems that could cause this????
Did this happen at the same times as a change in the source code? I have
spent hours failing to realise that the place with the breakpoint no
longer got executed.
--
John Dallman ***@cix.co.uk
"C++ - the FORTRAN of the early 21st century."
Andrew
2007-06-27 08:33:50 UTC
Permalink
Post by Neil B
All of a sudden the breakpoint feature of the debugger stopped working.
I can set the breakpoints on a line of code okay. The red dot appears to the
left of the line. But no matter where it put them in the code they are
ignored. I'm compiled in debug mode.
Where do you start to look for problems that could cause this????
Thanks, Neil
1. try rebuild solution/project to be sure that you use the latest binary.
2. check: are you use correct binaries (e.g. you load dll from valid path)?
3. check: are you use debug version of code?

Loading...