| 23 | |
| 24 | struct LogStream : public ::std::ostream { |
| 25 | LogStream(PageAllocator& page_allocator) noexcept : ::std::ostream(&buffer) { |
| 26 | buffer.set_page_allocator(page_allocator); |
| 27 | buffer.begin(); |
| 28 | } |
| 29 | |
| 30 | inline LogEntry& end() noexcept { |
| 31 | return buffer.end(); |
nothing calls this directly
no test coverage detected