From f7ada0a8e1a3797c608771267e67204ca4a1221b Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 23 Mar 2021 18:15:52 +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 147fb36ea..3c9fa9199 100644 --- a/include/nlohmann/json.hpp +++ b/include/nlohmann/json.hpp @@ -1255,7 +1255,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec return j.m_parent == this; })); } - JSON_CATCH(...) {} + JSON_CATCH(...) {} // LCOV_EXCL_LINE #else static_cast(check_parents); #endif diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 3760063b8..282f33291 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -18068,7 +18068,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec return j.m_parent == this; })); } - JSON_CATCH(...) {} + JSON_CATCH(...) {} // LCOV_EXCL_LINE #else static_cast(check_parents); #endif