source: box/trunk/lib/common/MemLeakFindOff.h @ 217

Revision 217, 572 bytes checked in by martin, 6 years ago (diff)

Set svn:eol-style as appropriate for all files

  • Property svn:eol-style set to native
Line 
1// --------------------------------------------------------------------------
2//
3// File
4//              Name:    MemLeakFindOff.h
5//              Purpose: Switch memory leak finding off
6//              Created: 13/1/04
7//
8// --------------------------------------------------------------------------
9
10// no header guard
11
12#ifdef BOX_MEMORY_LEAK_TESTING
13
14#undef new
15
16#ifndef MEMLEAKFINDER_FULL_MALLOC_MONITORING
17        #ifdef MEMLEAKFINDER_MALLOC_MONITORING_DEFINED
18                #undef malloc
19                #undef realloc
20                #undef free
21                #undef MEMLEAKFINDER_MALLOC_MONITORING_DEFINED
22        #endif
23#endif
24
25#undef MEMLEAKFINDER_ENABLED
26
27#endif
Note: See TracBrowser for help on using the repository browser.