From time to time I notice that the studio breakpoints.
Previously helped clean - rebuild. But today something is not helping ... enter image description here

For example, here, the breakpoint on line 125 is not placed in any, and accordingly, all the breakpoints start swimming along the file.

May be known causes and means of dealing with such situations?

  • Is this debug or is it a release? .. - Harry
  • @Harry is a debug - goldstar_labs

1 answer 1

In general, these are my favorite line breaks.
If you look at the hex editor, then after the bracket on line 123 instead of the expected two line feeds 0x0d 0x0a 0x0d 0x0a, I see only 0x0d 0x0d 0x0a, the studio apparently knows how to handle such a thing and correctly displays two line feeds in the editor, but the debugger considers these three characters for just one line break. After the translation of the line breaks everything became ok.

  • And the reason for this was copying code from another repository, where only 0x0d characters are used to translate strings) - goldstar_labs