//+---------------------------------------------------------------------------- // // File: debug.h // // Module: // // Synopsis: // // Author: sgasch // // Created 4 Jun 1999 // //+---------------------------------------------------------------------------- #ifndef _DEBUG #define _DEBUG #ifdef DEBUG void _assert(const char *szFile, const int dwLine); #define ASSERT(x) if (x) \ { ; } \ else \ { (void) _assert(__FILE__, __LINE__); } #else #define ASSERT #endif // DEBUG #endif // _DEBUG