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
{{ message }}
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
The standard of C and C++ assumes by default that the code is compiled in debug mode (which affects such things as, e.g. assert() macro).
If the developer wants to compile the code in non-debug mode, then the C/C++ standards prescribe to define the NDEBUG macro (search for NDEBUGhere).
Consider removing the DEBUG, _DEBUG and similar macros/definitions from our code and using the NDEBUG instead.