prime/libc/type_traits
2025-01-29 23:34:30 -07:00

12 lines
170 B
Plaintext

#ifndef _TYPE_TRAITS
#define _TYPE_TRAITS
namespace std {
template < typename T >
struct type_identity {
typedef T type;
};
} // namespace std
#endif // _TYPE_TRAITS