diff --git a/src/type_traits.h b/src/type_traits.h index 8d08e219..3d57ed31 100644 --- a/src/type_traits.h +++ b/src/type_traits.h @@ -271,11 +271,11 @@ namespace etl template <> struct make_signed { - typedef typename etl::conditional::type>::type type; + typedef etl::conditional::type>::type type; }; template <> struct make_signed { typedef short type; }; @@ -295,11 +295,11 @@ namespace etl template <> struct make_unsigned { - typedef typename etl::conditional::type>::type type; + typedef etl::conditional::type>::type type; }; template <> struct make_unsigned { typedef unsigned int type; };