From f5f122cd0d8f737a6c23bba2820c04629d4c8665 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 3 Apr 2022 17:18:39 +0200 Subject: [PATCH] Apply suggestions from code review --- single_include/nlohmann/json.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 37faf1692..bd60d0916 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -3497,7 +3497,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 {};