| 65 | }; |
| 66 | |
| 67 | class SIMDjson : public JsonBase<SIMDjson, SIMDjsonParseResult> { |
| 68 | public: |
| 69 | bool parse_impl(std::string_view json, SIMDjsonParseResult &pr) const { |
| 70 | pr.parser_.parse(json.data(), json.size()).tie(pr.root_, pr.error_); |
| 71 | if (pr.error_) { |
| 72 | return false; |
| 73 | } |
| 74 | return true; |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected