| 284 | } |
| 285 | |
| 286 | void MemoryTracker::alloc(Int64 size) |
| 287 | { |
| 288 | bool throw_if_memory_exceeded = true; |
| 289 | allocImpl(size, throw_if_memory_exceeded); |
| 290 | } |
| 291 | |
| 292 | void MemoryTracker::allocNoThrow(Int64 size) |
| 293 | { |
nothing calls this directly
no test coverage detected