This commit is contained in:
parent
74e5935b39
commit
bca1a72bff
@ -1872,6 +1872,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
template < typename ValueType, typename std::enable_if <
|
template < typename ValueType, typename std::enable_if <
|
||||||
detail::conjunction <
|
detail::conjunction <
|
||||||
detail::negation<std::is_pointer<ValueType>>,
|
detail::negation<std::is_pointer<ValueType>>,
|
||||||
|
detail::negation<std::is_same<ValueType, nullptr_t>>,
|
||||||
detail::negation<std::is_same<ValueType, detail::json_ref<basic_json>>>,
|
detail::negation<std::is_same<ValueType, detail::json_ref<basic_json>>>,
|
||||||
detail::negation<std::is_same<ValueType, typename string_t::value_type>>,
|
detail::negation<std::is_same<ValueType, typename string_t::value_type>>,
|
||||||
detail::negation<detail::is_basic_json<ValueType>>,
|
detail::negation<detail::is_basic_json<ValueType>>,
|
||||||
|
|||||||
@ -19043,6 +19043,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
template < typename ValueType, typename std::enable_if <
|
template < typename ValueType, typename std::enable_if <
|
||||||
detail::conjunction <
|
detail::conjunction <
|
||||||
detail::negation<std::is_pointer<ValueType>>,
|
detail::negation<std::is_pointer<ValueType>>,
|
||||||
|
detail::negation<std::is_same<ValueType, nullptr_t>>,
|
||||||
detail::negation<std::is_same<ValueType, detail::json_ref<basic_json>>>,
|
detail::negation<std::is_same<ValueType, detail::json_ref<basic_json>>>,
|
||||||
detail::negation<std::is_same<ValueType, typename string_t::value_type>>,
|
detail::negation<std::is_same<ValueType, typename string_t::value_type>>,
|
||||||
detail::negation<detail::is_basic_json<ValueType>>,
|
detail::negation<detail::is_basic_json<ValueType>>,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user