do not check for compatible_object_type in compatible_array_type
This commit is contained in:
parent
29f72966c3
commit
628f76729e
2 changed files with 12 additions and 8 deletions
|
@ -248,9 +248,11 @@ void to_json(BasicJsonType& j, const std::vector<bool>& e)
|
||||||
external_constructor<value_t::array>::construct(j, e);
|
external_constructor<value_t::array>::construct(j, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename BasicJsonType, typename CompatibleArrayType,
|
template <typename BasicJsonType, typename CompatibleArrayType,
|
||||||
enable_if_t<is_compatible_array_type<BasicJsonType, CompatibleArrayType>::value or
|
enable_if_t<is_compatible_array_type<BasicJsonType,
|
||||||
std::is_same<typename BasicJsonType::array_t, CompatibleArrayType>::value,
|
CompatibleArrayType>::value and
|
||||||
|
not is_compatible_object_type<
|
||||||
|
BasicJsonType, CompatibleArrayType>::value,
|
||||||
int> = 0>
|
int> = 0>
|
||||||
void to_json(BasicJsonType& j, const CompatibleArrayType& arr)
|
void to_json(BasicJsonType& j, const CompatibleArrayType& arr)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1769,9 +1769,11 @@ void to_json(BasicJsonType& j, const std::vector<bool>& e)
|
||||||
external_constructor<value_t::array>::construct(j, e);
|
external_constructor<value_t::array>::construct(j, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename BasicJsonType, typename CompatibleArrayType,
|
template <typename BasicJsonType, typename CompatibleArrayType,
|
||||||
enable_if_t<is_compatible_array_type<BasicJsonType, CompatibleArrayType>::value or
|
enable_if_t<is_compatible_array_type<BasicJsonType,
|
||||||
std::is_same<typename BasicJsonType::array_t, CompatibleArrayType>::value,
|
CompatibleArrayType>::value and
|
||||||
|
not is_compatible_object_type<
|
||||||
|
BasicJsonType, CompatibleArrayType>::value,
|
||||||
int> = 0>
|
int> = 0>
|
||||||
void to_json(BasicJsonType& j, const CompatibleArrayType& arr)
|
void to_json(BasicJsonType& j, const CompatibleArrayType& arr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue