| 7 | void pool_allocator_examples(); |
| 8 | |
| 9 | int main() |
| 10 | { |
| 11 | try |
| 12 | { |
| 13 | extensibility_examples(); |
| 14 | pool_allocator_examples(); |
| 15 | } |
| 16 | catch (const std::exception& e) |
| 17 | { |
| 18 | std::cout << e.what() << '\n'; |
| 19 | } |
| 20 | |
| 21 | return 0; |
| 22 | } |
nothing calls this directly
no test coverage detected