mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-11 09:39:06 +00: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
|