This commit is contained in:
2020-10-19 15:18:16 +03:00
parent 2794d866fd
commit e0d46463ae
8 changed files with 60 additions and 121 deletions

View File

@@ -155,6 +155,16 @@
extern char ** environ;
#endif
#ifdef NDEBUG
# undef NDEBUG
#endif
#include <cassert>
#ifndef assert
# define assert(x)
# define assertm(exp, msg)
#else
# define assertm(exp, msg) assert(((void)msg, exp))
#endif
#ifdef CC_GCC
# undef DEPRECATED

View File

@@ -28,6 +28,7 @@
#endif
#include <atomic>
class PIMutex;
class PIMutexLocker;
class PIObject;