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.

10 rindas
216 B

  1. #pragma once
  2. namespace gp{
  3. template< class T >
  4. struct remove_cvref {
  5. using type = std::remove_cv_t<std::remove_reference_t<T>>;
  6. };
  7. template< class T >
  8. using remove_cvref_t = typename remove_cvref<T>::type;
  9. }