struct add_const_past_pointer

Declaration

template <typename T, typename Enable = void>
struct add_const_past_pointer { /* full declaration omitted */ };

Description

If T is a pointer to X, return a pointer to const X. If it is not, return const T.

Declared at: llvm/include/llvm/Support/type_traits.h:55

Templates

T
Enable = void