Home
last modified time | relevance | path

Searched defs:normalize_arg (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/proto/detail/
Dpoly_function.hpp39 struct normalize_arg struct
41 typedef typename mpl::if_c<is_noncopyable<T>::value, T &, T>::type type;
42 typedef T &reference;
46 struct normalize_arg<T const> struct
48 typedef typename mpl::if_c<is_noncopyable<T>::value, T const &, T>::type type;
49 typedef T const &reference;
53 struct normalize_arg<T &> struct
55 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 …]