Function to decrement the byte counter and decrease the bytes usage of the memory tracker.
| 328 | /// Function to decrement the byte counter and decrease the bytes usage |
| 329 | /// of the memory tracker. |
| 330 | void ReleaseBytes() { |
| 331 | if (dict_mem_tracker_ != nullptr) { |
| 332 | dict_mem_tracker_->Release(dict_bytes_cnt_); |
| 333 | dict_bytes_cnt_ = 0; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /// Function to increment the byte counter and increase the bytes usage |
| 338 | /// of the memory tracker. |