Searched defs:make_const_ptr (Results 1 – 4 of 4) sorted by relevance
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; }; struct