General Purpose library for Freestanding C++ and POSIX systems
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
|
- #pragma once
-
- namespace gp{
- template< class T >
- struct remove_cvref {
- using type = std::remove_cv_t<std::remove_reference_t<T>>;
- };
-
- template< class T >
- using remove_cvref_t = typename remove_cvref<T>::type;
- }
|