decrement allocation to statistics */
| 142 | |
| 143 | /* decrement allocation to statistics */ |
| 144 | void dec_count(size_t dec) |
| 145 | { |
| 146 | stats.current -= dec; |
| 147 | if(userCallback) { |
| 148 | userCallback(stats.current); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | #endif // ENABLE_MALLOC_COUNT |
| 153 |
no outgoing calls
no test coverage detected