| 480 | for (const auto& pool : pools) { |
| 481 | if (detail) { |
| 482 | out << pool->treeMemoryUsage(false); |
| 483 | } else { |
| 484 | out << "\t" << pool->name() << "\n"; |
| 485 | } |
| 486 | out << "\trefcount " << pool.use_count() << "\n"; |
| 487 | } |
| 488 | BOLT_CHECK_NOT_NULL(allocator_); |
| 489 | BOLT_CHECK_NOT_NULL(arbitrator_); |
| 490 | out << allocator_->toString() << "\n"; |
| 491 | out << arbitrator_->toString(); |
| 492 | out << "]"; |
| 493 | return out.str(); |
no outgoing calls
no test coverage detected