From 95087716ae37edb45dd21d539c21474f27d66b1e Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 3 Apr 2022 17:17:00 +0200 Subject: [PATCH] Apply suggestions from code review --- include/nlohmann/detail/meta/type_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nlohmann/detail/meta/type_traits.hpp b/include/nlohmann/detail/meta/type_traits.hpp index 166509468..0a320e6e2 100644 --- a/include/nlohmann/detail/meta/type_traits.hpp +++ b/include/nlohmann/detail/meta/type_traits.hpp @@ -152,7 +152,7 @@ struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> // https://en.cppreference.com/w/cpp/types/conjunction template struct conjunction : std::true_type { }; -template struct conjunction : B { }; +template struct conjunction : B { }; template struct conjunction : std::conditional, B>::type {};