| 20 | #include "simdjson.h" |
| 21 | |
| 22 | class SIMDjsonStringResult : public StringResult<SIMDjsonStringResult> { |
| 23 | public: |
| 24 | std::string_view str_impl() const { return s.c_str(); } |
| 25 | |
| 26 | std::string s; |
| 27 | }; |
| 28 | |
| 29 | class SIMDjsonParseResult |
| 30 | : public ParseResult<SIMDjsonParseResult, SIMDjsonStringResult> { |
nothing calls this directly
no outgoing calls
no test coverage detected