Files
megasource/libs/openal-soft/common/altraits.h
T
2024-03-20 11:06:03 +08:00

15 lines
262 B
C++

#ifndef COMMON_ALTRAITS_H
#define COMMON_ALTRAITS_H
namespace al {
template<typename T>
struct type_identity { using type = T; };
template<typename T>
using type_identity_t = typename type_identity<T>::type;
} // namespace al
#endif /* COMMON_ALTRAITS_H */