Searched defs:make_unsigned_impl (Results 1 – 1 of 1) sorted by relevance
410 struct make_unsigned_impl { typedef T type; }; argument411 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; }; struct414 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… argument