diff --git a/include/nlohmann/detail/meta/type_traits.hpp b/include/nlohmann/detail/meta/type_traits.hpp index 273d80cb..9dfad61e 100644 --- a/include/nlohmann/detail/meta/type_traits.hpp +++ b/include/nlohmann/detail/meta/type_traits.hpp @@ -137,31 +137,32 @@ template struct is_compatible_array_type : is_compatible_array_type_impl {}; -template +template struct is_compatible_integer_type_impl : std::false_type {}; -template -struct is_compatible_integer_type_impl +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t::value and + std::is_integral::value and + not std::is_same::value >> { // is there an assert somewhere on overflows? using RealLimits = std::numeric_limits; using CompatibleLimits = std::numeric_limits; static constexpr auto value = - std::is_constructible::value and + std::is_constructible::value and CompatibleLimits::is_integer and RealLimits::is_signed == CompatibleLimits::is_signed; }; -template +template struct is_compatible_integer_type -{ - static constexpr auto value = - is_compatible_integer_type_impl < - std::is_integral::value and - not std::is_same::value, - RealIntegerType, CompatibleNumberIntegerType > ::value; -}; + : is_compatible_integer_type_impl {}; // trait checking if JSONSerializer::from_json(json const&, udt&) exists template diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 15ff8765..4cca4b5f 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -517,31 +517,32 @@ template struct is_compatible_array_type : is_compatible_array_type_impl {}; -template +template struct is_compatible_integer_type_impl : std::false_type {}; -template -struct is_compatible_integer_type_impl +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t::value and + std::is_integral::value and + not std::is_same::value >> { // is there an assert somewhere on overflows? using RealLimits = std::numeric_limits; using CompatibleLimits = std::numeric_limits; static constexpr auto value = - std::is_constructible::value and + std::is_constructible::value and CompatibleLimits::is_integer and RealLimits::is_signed == CompatibleLimits::is_signed; }; -template +template struct is_compatible_integer_type -{ - static constexpr auto value = - is_compatible_integer_type_impl < - std::is_integral::value and - not std::is_same::value, - RealIntegerType, CompatibleNumberIntegerType > ::value; -}; + : is_compatible_integer_type_impl {}; // trait checking if JSONSerializer::from_json(json const&, udt&) exists template