[ox/std] Add remove_pointer_t alias
This commit is contained in:
3
deps/ox/src/ox/std/typetraits.hpp
vendored
3
deps/ox/src/ox/std/typetraits.hpp
vendored
@@ -223,6 +223,9 @@ struct remove_pointer<T* const volatile> {
|
||||
using type = T;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
using remove_pointer_t = typename remove_pointer<T>::type;
|
||||
|
||||
|
||||
template<typename T>
|
||||
struct remove_reference {
|
||||
|
||||
Reference in New Issue
Block a user