| 116 | } |
| 117 | |
| 118 | void GlobalMemoryAllocatorStash::save() |
| 119 | { |
| 120 | originalMallocAllocator = getCurrentMallocAllocator(); |
| 121 | originalNewAllocator = getCurrentNewAllocator(); |
| 122 | originalNewArrayAllocator = getCurrentNewArrayAllocator(); |
| 123 | } |
| 124 | |
| 125 | void GlobalMemoryAllocatorStash::restore() |
| 126 | { |
nothing calls this directly
no test coverage detected