IGL_ASSERT.h 204 B

123456789
  1. // https://stackoverflow.com/a/985807/148668
  2. #include <cassert>
  3. #ifndef IGL_ASSERT
  4. #ifdef NDEBUG
  5. #define IGL_ASSERT(x) do { (void)sizeof(x);} while (0)
  6. #else
  7. #define IGL_ASSERT(x) assert(x)
  8. #endif
  9. #endif