You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String comparison doesn't work in conditional breakpoints.
The way it works in visual studio is by doing strcmp() in the condition field but I think we can do better :)
The text was updated successfully, but these errors were encountered:
This is now in dev and will be in 0.9.12 (though as I have said elsewhere, I don't recommend using dev just yet, since a few regressions are still being fixed).
The way this will work is you can use pointer comparison with a string literal in the evaluation system. In other words, this can now be evaluated:
some_ptr_in_program == "Hello, World!"
And it can be used in conditional breakpoints as well.
String comparison doesn't work in conditional breakpoints.
The way it works in visual studio is by doing strcmp() in the condition field but I think we can do better :)
The text was updated successfully, but these errors were encountered: