| 12228 | res = std::stoull(s, &processed_chars); |
| 12229 | } |
| 12230 | JSON_CATCH(std::out_of_range&) |
| 12231 | { |
| 12232 | JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'", BasicJsonType())); |
| 12233 | } |
| 12234 | |
| 12235 | // check if the string was completely read |
| 12236 | if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) |