| 15499 | } |
| 15500 | |
| 15501 | VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString( |
| 15502 | VmaAllocator allocator, |
| 15503 | char* pStatsString) |
| 15504 | { |
| 15505 | if(pStatsString != VMA_NULL) |
| 15506 | { |
| 15507 | VMA_ASSERT(allocator); |
| 15508 | VmaFreeString(allocator->GetAllocationCallbacks(), pStatsString); |
| 15509 | } |
| 15510 | } |
| 15511 | |
| 15512 | #endif // VMA_STATS_STRING_ENABLED |
| 15513 |
nothing calls this directly
no test coverage detected