Searched refs:decay_imp (Results 1 – 1 of 1) sorted by relevance
25 …template <class T, bool Array, bool Function> struct decay_imp { typedef typename remove_cv<T>::ty… struct26 …template <class T> struct decay_imp<T, true, false> { typedef typename remove_bounds<T>::type* typ… struct27 template <class T> struct decay_imp<T, false, true> { typedef T* type; }; struct37 …typedef typename boost::detail::decay_imp<Ty, boost::is_array<Ty>::value, boost::is_function<Ty>::… argument