[libcxx-commits] [libcxx] [libc++] Add alias template for __strip_signature::type (PR #181955)
William Fynn via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Feb 18 03:59:17 PST 2026
fynnwilliam wrote:
Thanks @philnik777. This was only an attempt to providing a similar and simplified way of getting the underlying type within a class. Similar to say
```c++
// copied text from cppreference
template< class T >
using remove_pointer_t = typename remove_pointer<T>::type;
```
https://github.com/llvm/llvm-project/pull/181955
More information about the libcxx-commits
mailing list