Fixed C++ 98 build

This commit is contained in:
Christophe 2019-08-07 15:00:50 +02:00
parent a87784c125
commit 8bf26a2bb3

View File

@ -710,6 +710,12 @@ namespace detail
typedef unsigned char type;
};
template<>
struct make_unsigned<signed char>
{
typedef unsigned char type;
};
template<>
struct make_unsigned<short>
{