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
Or could e.g. offer an ASSERT which checks the assertion even if NDEBUG is set, and an NASSERT which behaves like assert from C. Because most assertions could stay in release builds without the performance downside (Todo: overview over other project's approaches.)
The
assert
from#include <cassert>
aborts on failures. Instead write one that uses our newPANIC
macro, and include or use that instead.The text was updated successfully, but these errors were encountered: