| 52 | |
| 53 | common::string_t writeString(PageAllocator* pageAllocator, std::string_view rawString); |
| 54 | common::string_t writeString(PageAllocator* pageAllocator, const char* rawString) { |
| 55 | return writeString(pageAllocator, std::string_view(rawString)); |
| 56 | } |
| 57 | |
| 58 | void checkpoint(); |
| 59 | void checkpointInMemory() { pageWriteCache.clear(); } |
nothing calls this directly
no test coverage detected