| 324 | das_hash_map<void *,const LineInfo *> bigStuffAt; |
| 325 | das_hash_map<void *,const char *> bigStuffComment; |
| 326 | __forceinline void mark_location ( void * ptr, const LineInfo * at ) { |
| 327 | if ( trackAllocations ) bigStuffAt[ptr] = at; |
| 328 | } |
| 329 | __forceinline void mark_comment ( void * ptr, const char * what ) { |
| 330 | if ( trackAllocations ) bigStuffComment[ptr] = what; |
| 331 | } |
no outgoing calls
no test coverage detected