| 343 | |
| 344 | struct CacheData { |
| 345 | CacheData() : nBytesAllocated(0), nBytesUsed(0), memoryFraction(0), hit(0), miss(0), hitFraction(0) {} |
| 346 | int nBytesAllocated; |
| 347 | int nBytesUsed; |
| 348 | float memoryFraction; |
nothing calls this directly
no outgoing calls
no test coverage detected