00001
00004 #ifndef RAZORBACK_DEBUG_H
00005 #define RAZORBACK_DEBUG_H
00006
00007
00008 #ifdef ENABLE_ASSERT
00009 #include <assert.h>
00010 #define ASSERT(x) assert(x)
00011 #else
00012 #define ASSERT(x) ;
00013 #endif
00014
00015 #ifdef ENABLE_UNIMPLEMENTED_ASSERT
00016 #define UNIMPLEMENTED() ASSERT(false)
00017 #else
00018 #define UNIMPLEMENTED() ;
00019 #endif
00020
00021 #endif //RAZORBACK_DEBUG_H