libigl
v2.5.0
Loading...
Searching...
No Matches
IGL_ASSERT.h
Go to the documentation of this file.
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
include
igl
IGL_ASSERT.h
Generated by
1.9.8