Searched defs:normalize_arg (Results 1 – 1 of 1) sorted by relevance
39 struct normalize_arg struct41 typedef typename mpl::if_c<is_noncopyable<T>::value, T &, T>::type type;42 typedef T &reference;46 struct normalize_arg<T const> struct48 typedef typename mpl::if_c<is_noncopyable<T>::value, T const &, T>::type type;49 typedef T const &reference;53 struct normalize_arg<T &> struct55 typedef typename mpl::if_c<is_noncopyable<T>::value, T &, T>::type type;56 typedef T &reference;60 struct normalize_arg<T const &> struct[all …]