| 28 | { |
| 29 | public: |
| 30 | explicit context_memory(std::size_t preallocated) |
| 31 | : preallocated_(preallocated), |
| 32 | next_allocation_(0), |
| 33 | storage_(new unsigned char[preallocated_]) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | ~context_memory() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected