Add new JSON_INTERNAL_CATCH macro function

This commit is contained in:
Hyeon Kim 2018-07-19 15:43:41 +09:00
parent 7bfc406ded
commit d0e60de433
4 changed files with 20 additions and 4 deletions

View file

@ -3437,7 +3437,7 @@ class basic_json
{
return ptr.get_checked(this);
}
JSON_CATCH (out_of_range&)
JSON_INTERNAL_CATCH (out_of_range&)
{
return default_value;
}
@ -7359,7 +7359,7 @@ class basic_json
// the "path" location must exist - use at()
success = (result.at(ptr) == get_value("test", "value", false));
}
JSON_CATCH (out_of_range&)
JSON_INTERNAL_CATCH (out_of_range&)
{
// ignore out of range errors: success remains false
}