diff --git a/include/nlohmann/json.hpp b/include/nlohmann/json.hpp index 8dc9a348b..8b133fa7a 100644 --- a/include/nlohmann/json.hpp +++ b/include/nlohmann/json.hpp @@ -1254,7 +1254,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec return j.m_parent == this; })); } - catch (..) {} + catch (...) {} #else static_cast(check_parents); #endif diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 8407110b5..7301d5f04 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -18067,7 +18067,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec return j.m_parent == this; })); } - catch (..) {} + catch (...) {} #else static_cast(check_parents); #endif