| 160 | #endif |
| 161 | } |
| 162 | __forceinline void mark_comment ( void * ptr, const char * what ) { |
| 163 | #if DAS_TRACK_ALLOCATIONS |
| 164 | if ( trackAllocations ) impl_mark_comment(ptr, what); |
| 165 | #else |
| 166 | (void)ptr; (void)what; |
| 167 | #endif |
| 168 | } |
| 169 | __forceinline const char * get_comment ( void * ptr ) const { |
| 170 | #if DAS_TRACK_ALLOCATIONS |
| 171 | if ( trackAllocations ) return impl_get_comment(ptr); |
no test coverage detected