mirror of
https://github.com/nlohmann/json.git
synced 2024-11-29 01:49:01 +08:00
💄 cleanup
This commit is contained in:
parent
20bcf1015b
commit
a58ed3cd17
10
src/json.hpp
10
src/json.hpp
@ -12486,7 +12486,7 @@ basic_json_parser_74:
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -12585,7 +12585,7 @@ basic_json_parser_74:
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -12643,7 +12643,7 @@ basic_json_parser_74:
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -12707,7 +12707,7 @@ basic_json_parser_74:
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -12764,7 +12764,7 @@ basic_json_parser_74:
|
||||
{
|
||||
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"));
|
||||
}
|
||||
|
@ -11519,7 +11519,7 @@ class basic_json
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -11618,7 +11618,7 @@ class basic_json
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -11676,7 +11676,7 @@ class basic_json
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -11740,7 +11740,7 @@ class basic_json
|
||||
{
|
||||
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"));
|
||||
}
|
||||
@ -11797,7 +11797,7 @@ class basic_json
|
||||
{
|
||||
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"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user