25 #ifndef AVOID_ASSERTIONS_H
26 #define AVOID_ASSERTIONS_H
30 #define COLA_ASSERT(expr) static_cast<void>(0)
34 #if defined(USE_ASSERT_EXCEPTIONS)
36 #include "libvpsc/assertions.h"
41 #define COLA_ASSERT(expr) assert(expr)
48 #endif // AVOID_ASSERTIONS_H