mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-03-31 14:22:54 -07:00
12 lines
170 B
Plaintext
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
|