| 507 | } |
| 508 | |
| 509 | void crash_on_allocation_number(unsigned alloc_number) |
| 510 | { |
| 511 | static CrashOnAllocationAllocator crashAllocator; |
| 512 | crashAllocator.setNumberToCrashOn(alloc_number); |
| 513 | setCurrentMallocAllocator(&crashAllocator); |
| 514 | setCurrentNewAllocator(&crashAllocator); |
| 515 | setCurrentNewArrayAllocator(&crashAllocator); |
| 516 | } |
| 517 | |
| 518 | class MemoryLeakWarningReporter: public MemoryLeakFailure |
| 519 | { |