ss_info_dassert now enabled also in release mode.

This commit is contained in:
Johan Wikman
2015-11-10 21:19:50 +02:00
parent 43c7ccdd08
commit 49866b5959
13 changed files with 91 additions and 1 deletions

View File

@ -27,6 +27,13 @@
* @endverbatim
*/
// To ensure that ss_info_assert asserts also when builing in non-debug mode.
#if !defined(SS_DEBUG)
#define SS_DEBUG
#endif
#if defined(NDEBUG)
#undef NDEBUG
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>