💄 cleanup

This commit is contained in:
Niels Lohmann 2017-03-25 14:47:23 +01:00
parent 20bcf1015b
commit a58ed3cd17
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 10 additions and 10 deletions

View file

@ -12486,7 +12486,7 @@ basic_json_parser_74:
{ {
result = &result->operator[](static_cast<size_type>(std::stoi(reference_token))); result = &result->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->at(static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->at(static_cast<size_type>(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")); JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number"));
} }

View file

@ -11519,7 +11519,7 @@ class basic_json
{ {
result = &result->operator[](static_cast<size_type>(std::stoi(reference_token))); result = &result->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->at(static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->operator[](static_cast<size_type>(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")); 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<size_type>(std::stoi(reference_token))); ptr = &ptr->at(static_cast<size_type>(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")); JSON_THROW(parse_error(109, 0, "array index '" + reference_token + "' is not a number"));
} }