| 11891 | res = std::stoull(s, &processed_chars); |
| 11892 | } |
| 11893 | JSON_CATCH(std::out_of_range&) |
| 11894 | { |
| 11895 | JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); |
| 11896 | } |
| 11897 | |
| 11898 | // check if the string was completely read |
| 11899 | if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) |