Searched defs:make_const_ptr (Results 1 – 8 of 8) sorted by relevance
53 template <typename T> struct make_const_ptr { struct54 using type = std::add_pointer_t<std::add_const_t<T>>;
68 template <typename T> struct make_const_ptr { struct69 using type = std::add_pointer_t<std::add_const_t<T>>;
27 template <typename T> struct make_const_ptr { typedef const T *type; }; argument
20 template <typename T> struct make_const_ptr { typedef const T *type; }; argument
27 template <typename T> struct make_const_ptr { typedef const T *type; }; struct