| 349 | bool ProfilerMemory::Enabled = false; |
| 350 | |
| 351 | void ProfilerMemory::IncrementGroup(Groups group, uint64 size) |
| 352 | { |
| 353 | AddGroupMemory(group, (int64)size); |
| 354 | } |
| 355 | |
| 356 | void ProfilerMemory::DecrementGroup(Groups group, uint64 size) |
| 357 | { |
nothing calls this directly
no test coverage detected