projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
updated to add ant home
[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