00001 #ifndef GMTL_ASSERT_H 00002 #define GMTL_ASSERT_H 00003 00004 // -- VERY simple assertion stuff -- // 00005 #ifdef _DEBUG 00006 # include <assert.h> 00007 # define gmtlASSERT(val) assert((val)) 00008 #else 00009 # define gmtlASSERT(val) ((void)0) 00010 #endif 00011 00012 00013 #endif