Searched defs:deduce_scalar_impl (Results 1 – 1 of 1) sorted by relevance
20 template <class A,class B> struct deduce_scalar_impl { }; struct24 deduce_scalar_impl<T,T> struct26 typedef T type;29 … template <> struct deduce_scalar_impl<signed char,unsigned char> { typedef unsigned char type; }; argument30 …template <> struct deduce_scalar_impl<signed char,unsigned short> { typedef unsigned short type; }; struct31 … template <> struct deduce_scalar_impl<signed char,unsigned int> { typedef unsigned int type; }; struct32 … template <> struct deduce_scalar_impl<signed char,unsigned long> { typedef unsigned long type; }; struct33 … template <> struct deduce_scalar_impl<signed char,signed short> { typedef signed short type; }; struct34 … template <> struct deduce_scalar_impl<signed char,signed int> { typedef signed int type; }; struct35 … template <> struct deduce_scalar_impl<signed char,signed long> { typedef signed long type; }; argument[all …]