1 #ifndef ALLOCTAG_DEBUG_H
2 #define ALLOCTAG_DEBUG_H
3 
4 #include <libcwd/debug.h>
5 
6 #if !CWDEBUG_ALLOC
7 #define AllocTag1(p)
8 #define AllocTag2(p, desc)
9 #define AllocTag_dynamic_description(p, x)
10 #define AllocTag(p, x)
11 #define NEW(x) new x
12 #endif
13 
14 #endif // ALLOCTAG_DEBUG_H
15 
16