From 5306eef15095731e2eda8337038c8231c5a6c3a6 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 23 Mar 2021 13:15:06 +0100 Subject: [PATCH] :rotating_light: fix warning --- include/nlohmann/json.hpp | 2 +- single_include/nlohmann/json.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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