🐛 added fix for #464
This commit is contained in:
parent
c40c8ac92e
commit
628be157a2
2 changed files with 6 additions and 0 deletions
|
@ -3729,6 +3729,9 @@ class basic_json
|
|||
not std::is_same<ValueType, typename string_t::value_type>::value
|
||||
#ifndef _MSC_VER // fix for issue #167 operator<< ambiguity under VS2015
|
||||
and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
|
||||
#endif
|
||||
#if defined(_MSC_VER) && defined(_HAS_CXX17) // fix for issue #464
|
||||
and not std::is_same<ValueType, typename std::string_view>::value
|
||||
#endif
|
||||
, int >::type = 0 >
|
||||
operator ValueType() const
|
||||
|
|
|
@ -3729,6 +3729,9 @@ class basic_json
|
|||
not std::is_same<ValueType, typename string_t::value_type>::value
|
||||
#ifndef _MSC_VER // fix for issue #167 operator<< ambiguity under VS2015
|
||||
and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
|
||||
#endif
|
||||
#if defined(_MSC_VER) && defined(_HAS_CXX17) // fix for issue #464
|
||||
and not std::is_same<ValueType, typename std::string_view>::value
|
||||
#endif
|
||||
, int >::type = 0 >
|
||||
operator ValueType() const
|
||||
|
|
Loading…
Reference in a new issue