| 2529 | Handle getHandleForString (std::string_view) override { CHOC_ASSERT (false); return {}; } |
| 2530 | |
| 2531 | std::string_view getStringForHandle (Handle handle) const override |
| 2532 | { |
| 2533 | handle.handle--; |
| 2534 | Type::SerialisationHelpers::expect (handle.handle < size); |
| 2535 | return std::string_view (start + handle.handle); |
| 2536 | } |
| 2537 | |
| 2538 | const char* const start; |
| 2539 | const size_t size; |
nothing calls this directly
no outgoing calls
no test coverage detected