diff --git a/src/json.hpp b/src/json.hpp index 6ec045aaa..cc69d5422 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -12486,7 +12486,7 @@ basic_json_parser_74: { result = &result->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -12585,7 +12585,7 @@ basic_json_parser_74: { ptr = &ptr->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -12643,7 +12643,7 @@ basic_json_parser_74: { ptr = &ptr->at(static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -12707,7 +12707,7 @@ basic_json_parser_74: { ptr = &ptr->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -12764,7 +12764,7 @@ basic_json_parser_74: { ptr = &ptr->at(static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c index 7d21f76bb..1480a5f5e 100644 --- a/src/json.hpp.re2c +++ b/src/json.hpp.re2c @@ -11519,7 +11519,7 @@ class basic_json { result = &result->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -11618,7 +11618,7 @@ class basic_json { ptr = &ptr->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -11676,7 +11676,7 @@ class basic_json { ptr = &ptr->at(static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -11740,7 +11740,7 @@ class basic_json { ptr = &ptr->operator[](static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); } @@ -11797,7 +11797,7 @@ class basic_json { ptr = &ptr->at(static_cast(std::stoi(reference_token))); } - JSON_CATCH(std::invalid_argument&) + JSON_CATCH (std::invalid_argument&) { JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number")); }