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
I'm in CLion using the default settings which are MinGW (gcc/g++). MinGW does implement __debugbreak(), but this configuration evaluates to __builtin_trap() instead.
The __builtin_trap() can't be stepped over in the debugger, so __debugbreak() is superior and should be preferred when available.