| 748 | } |
| 749 | |
| 750 | int64_t LoggingMemoryPool::total_bytes_allocated() const { |
| 751 | int64_t mem = pool_->total_bytes_allocated(); |
| 752 | std::cout << "total_bytes_allocated: " << mem << std::endl; |
| 753 | return mem; |
| 754 | } |
| 755 | |
| 756 | int64_t LoggingMemoryPool::num_allocations() const { |
| 757 | int64_t mem = pool_->num_allocations(); |
no outgoing calls