CloverBootloader/rEFIt_UEFI/include/remove_ref.h
2021-04-03 13:55:25 +03:00

32 lines
414 B
C++

/*
*
*/
#ifndef __remove_ref_h__
#define __remove_ref_h__
// STRUCT TEMPLATE remove_reference
template<class _Ty>
struct _typeofam_remove_ref
{ // remove reference
using type = _Ty;
};
template<class _Ty>
struct _typeofam_remove_ref<_Ty&>
{ // remove reference
using type = _Ty;
};
//
//template<class _Ty>
// struct remove_ref<_Ty&&>
// { // remove rvalue reference
// using type = _Ty;
// };
#endif