drop std::enable_if part
This commit is contained in:
parent
aeef50709e
commit
0ecf297457
2 changed files with 2 additions and 4 deletions
|
@ -12,8 +12,7 @@ namespace nlohmann
|
||||||
{
|
{
|
||||||
namespace detail
|
namespace detail
|
||||||
{
|
{
|
||||||
template<typename string_type, typename std::enable_if<
|
template<typename string_type>
|
||||||
std::is_same<char, typename string_type::value_type>::value, int>::type = 0>
|
|
||||||
void int_to_string( string_type& target, std::size_t value )
|
void int_to_string( string_type& target, std::size_t value )
|
||||||
{
|
{
|
||||||
// For ADL
|
// For ADL
|
||||||
|
|
|
@ -3650,8 +3650,7 @@ namespace nlohmann
|
||||||
{
|
{
|
||||||
namespace detail
|
namespace detail
|
||||||
{
|
{
|
||||||
template<typename string_type, typename std::enable_if<
|
template<typename string_type>
|
||||||
std::is_same<char, typename string_type::value_type>::value, int>::type = 0>
|
|
||||||
void int_to_string( string_type& target, std::size_t value )
|
void int_to_string( string_type& target, std::size_t value )
|
||||||
{
|
{
|
||||||
// For ADL
|
// For ADL
|
||||||
|
|
Loading…
Reference in a new issue