| 45 | return false; |
| 46 | } |
| 47 | bool String(const char* str, size_t length, bool /* copy */) { |
| 48 | return update(pCurrent->readString(std::string_view(str, length))); |
| 49 | } |
| 50 | bool StartObject() { return update(pCurrent->readObjectStart()); } |
| 51 | bool Key(const char* str, size_t length, bool /* copy */) { |
| 52 | return update(pCurrent->readObjectKey(std::string_view(str, length))); |
nothing calls this directly
no test coverage detected