Main Page   Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

Assert.h

Go to the documentation of this file.
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

Generated on Mon Apr 7 15:28:54 2003 for GenericMathTemplateLibrary by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002