Searched defs:make_unsigned_impl (Results 1 – 1 of 1) sorted by relevance
585 struct make_unsigned_impl { typedef T type; }; argument586 template <> struct make_unsigned_impl<signed char> { typedef unsigned char type; }; argument587 template <> struct make_unsigned_impl<signed short> { typedef unsigned short type; }; argument588 template <> struct make_unsigned_impl<signed int> { typedef unsigned int type; }; struct589 template <> struct make_unsigned_impl<signed long> { typedef unsigned long type; }; struct591 template <> struct make_unsigned_impl< ::boost::long_long_type > { typedef ::boost::ulong_long_ty… argument