| 91 | struct ParseResult { |
| 92 | public: |
| 93 | ParseResult() noexcept {} |
| 94 | ParseResult(SonicError err, size_t off) noexcept : err_(err), off_(off) {} |
| 95 | ParseResult(SonicError err) noexcept : err_(err) {} |
| 96 | sonic_force_inline SonicError Error() const noexcept { return err_; } |
nothing calls this directly
no outgoing calls
no test coverage detected