Searched refs:make_unsigned_impl (Results 1 – 1 of 1) sorted by relevance
410 struct make_unsigned_impl { typedef T type; }; struct411 template <> struct make_unsigned_impl<signed char> { typedef unsigned char type; }; struct412 template <> struct make_unsigned_impl<signed short> { typedef unsigned short type; }; struct413 template <> struct make_unsigned_impl<signed int> { typedef unsigned int type; }; argument414 template <> struct make_unsigned_impl<signed long> { typedef unsigned long type; }; struct416 template <> struct make_unsigned_impl< ::boost::long_long_type > { typedef ::boost::ulong_long_ty… struct421 : make_unsigned_impl<typename remove_cv<T>::type>