removed is_compatible_float_type trait
This commit is contained in:
parent
be6b417c87
commit
b2543e06d8
2 changed files with 6 additions and 28 deletions
17
src/json.hpp
17
src/json.hpp
|
@ -461,14 +461,6 @@ struct is_compatible_integer_type
|
||||||
RealIntegerType, CompatibleNumberIntegerType > ::value;
|
RealIntegerType, CompatibleNumberIntegerType > ::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename RealFloat, typename CompatibleFloat>
|
|
||||||
struct is_compatible_float_type
|
|
||||||
{
|
|
||||||
static constexpr auto value =
|
|
||||||
std::is_constructible<RealFloat, CompatibleFloat>::value and
|
|
||||||
std::is_floating_point<CompatibleFloat>::value;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename BasicJson, typename T>
|
template <typename BasicJson, typename T>
|
||||||
struct is_basic_json_nested_type
|
struct is_basic_json_nested_type
|
||||||
{
|
{
|
||||||
|
@ -568,12 +560,9 @@ void to_json(Json &j, const CompatibleString &s)
|
||||||
external_constructor<value_t::string>::construct(j, s);
|
external_constructor<value_t::string>::construct(j, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <
|
template <typename Json, typename FloatType,
|
||||||
typename Json, typename CompatibleNumberFloatType,
|
enable_if_t<std::is_floating_point<FloatType>::value, int> = 0>
|
||||||
enable_if_t<is_compatible_float_type<typename Json::number_float_t,
|
void to_json(Json &j, FloatType val) noexcept
|
||||||
CompatibleNumberFloatType>::value,
|
|
||||||
int> = 0>
|
|
||||||
void to_json(Json &j, CompatibleNumberFloatType val) noexcept
|
|
||||||
{
|
{
|
||||||
external_constructor<value_t::number_float>::construct(j, val);
|
external_constructor<value_t::number_float>::construct(j, val);
|
||||||
}
|
}
|
||||||
|
|
|
@ -461,14 +461,6 @@ struct is_compatible_integer_type
|
||||||
RealIntegerType, CompatibleNumberIntegerType > ::value;
|
RealIntegerType, CompatibleNumberIntegerType > ::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename RealFloat, typename CompatibleFloat>
|
|
||||||
struct is_compatible_float_type
|
|
||||||
{
|
|
||||||
static constexpr auto value =
|
|
||||||
std::is_constructible<RealFloat, CompatibleFloat>::value and
|
|
||||||
std::is_floating_point<CompatibleFloat>::value;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <typename BasicJson, typename T>
|
template <typename BasicJson, typename T>
|
||||||
struct is_basic_json_nested_type
|
struct is_basic_json_nested_type
|
||||||
{
|
{
|
||||||
|
@ -568,12 +560,9 @@ void to_json(Json &j, const CompatibleString &s)
|
||||||
external_constructor<value_t::string>::construct(j, s);
|
external_constructor<value_t::string>::construct(j, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <
|
template <typename Json, typename FloatType,
|
||||||
typename Json, typename CompatibleNumberFloatType,
|
enable_if_t<std::is_floating_point<FloatType>::value, int> = 0>
|
||||||
enable_if_t<is_compatible_float_type<typename Json::number_float_t,
|
void to_json(Json &j, FloatType val) noexcept
|
||||||
CompatibleNumberFloatType>::value,
|
|
||||||
int> = 0>
|
|
||||||
void to_json(Json &j, CompatibleNumberFloatType val) noexcept
|
|
||||||
{
|
{
|
||||||
external_constructor<value_t::number_float>::construct(j, val);
|
external_constructor<value_t::number_float>::construct(j, val);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue