Changeset 20019 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.h
- Timestamp:
- Mar 7, 2007, 7:37:06 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.h
r17222 r20019 35 35 void *fastRealloc(void* p, size_t n); 36 36 37 #ifndef NDEBUG 38 void fastMallocForbid(); 39 void fastMallocAllow(); 40 #endif 41 37 42 } // namespace WTF 38 43 … … 41 46 using WTF::fastRealloc; 42 47 using WTF::fastFree; 48 49 #ifndef NDEBUG 50 using WTF::fastMallocForbid; 51 using WTF::fastMallocAllow; 52 #endif 43 53 44 54 #if PLATFORM(GCC) && PLATFORM(DARWIN)
Note:
See TracChangeset
for help on using the changeset viewer.