• Anh Kagi
    link
    fedilink
    Français
    92 months ago

    sometimes it’s also bugs caused by optimizations.

    • @[email protected]
      link
      fedilink
      22 months ago

      And that’s where Release with debug symbols comes in. Definitely harder to track down what’s going on when it skips 10 lines of code in one step though. Usually my code ends up the other way though, because debug mode has extra assertions to catch things like uninitialized memory or access-after-free (I think specifically MSVC sets memory to 0xcdcdcdcd on free in debug mode).