Searched defs: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; }; argument412 template <> struct make_unsigned_impl<signed short> { typedef unsigned short type; }; argument413 template <> struct make_unsigned_impl<signed int> { typedef unsigned int type; }; struct414 template <> struct make_unsigned_impl<signed long> { typedef unsigned long type; }; argument416 template <> struct make_unsigned_impl< ::boost::long_long_type > { typedef ::boost::ulong_long_ty… struct