resurrecting the gnu c++ build on windows
[feisty_meow.git] / scripts / clam / cpp / vis_stu / untrap_new.addin
1
2 // this should be included after the last usage of new that must be protected.
3
4 #ifdef NEW_TRAP
5   #undef NEW_TRAP
6   #ifndef ENABLE_MEMORY_HOOK
7     #define new DEBUG_NEW
8   #else
9     #define new HOOPLE_NEW
10   #endif
11 #endif
12
13
14
15