00001 00002 #ifndef ASSERT_H 00003 #define ASSERT_H 00004 00005 #undef assert 00006 #define ASSERTION 00007 00008 #ifdef ASSERTION 00009 #define ASSERT(cond) grASSERT((cond),__FILE__,__LINE__,(#cond)) 00010 #else 00011 #define ASSERT(cond) 00012 #endif //ASSERTION 00013 00014 void grASSERT(const bool, const char*, const int, const char*); 00015 00016 #endif //ASSERT_H
1.5.8