We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This causes warnings about unused parameters or variables on MSVC.
patch.diff.txt
@@ -2645,7 +2645,7 @@ class basic_json assert(m_value.array != nullptr); return m_value.array->at(idx); } - catch (std::out_of_range& e) + catch (std::out_of_range& ) { // create better exception explanation throw std::out_of_range("array index " + std::to_string(idx) + " is out of range"); @@ -2689,7 +2689,7 @@ class basic_json assert(m_value.array != nullptr); return m_value.array->at(idx); } - catch (std::out_of_range& e) + catch (std::out_of_range& ) { // create better exception explanation throw std::out_of_range("array index " + std::to_string(idx) + " is out of range"); @@ -2737,7 +2737,7 @@ class basic_json assert(m_value.object != nullptr); return m_value.object->at(key); } - catch (std::out_of_range& e) + catch (std::out_of_range& ) { // create better exception explanation throw std::out_of_range("key '" + key + "' not found"); @@ -2785,7 +2785,7 @@ class basic_json assert(m_value.object != nullptr); return m_value.object->at(key); } - catch (std::out_of_range& e) + catch (std::out_of_range& ) { // create better exception explanation throw std::out_of_range("key '" + key + "' not found");
The text was updated successfully, but these errors were encountered:
4511145
Thanks!
Sorry, something went wrong.
nlohmann
No branches or pull requests
This causes warnings about unused parameters or variables on MSVC.
patch.diff.txt
The text was updated successfully, but these errors were encountered: