| 12809 | res = std::stoull(s, &processed_chars); |
| 12810 | } |
| 12811 | JSON_CATCH(std::out_of_range&) |
| 12812 | { |
| 12813 | JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'", BasicJsonType())); |
| 12814 | } |
| 12815 | |
| 12816 | // check if the string was completely read |
| 12817 | if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) |