General Purpose library for Freestanding C++ and POSIX systems
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

13 rindas
240 B

#pragma once
#include <type_traits>
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;
}