| 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_; } |
| 97 | sonic_force_inline size_t Offset() const noexcept { return off_; } |
| 98 | |
| 99 | private: |
no outgoing calls