Torque3D/Engine/lib/openal-soft/common/altraits.h
marauder2k7 a745fc3757 Initial commit
added libraries:
opus
flac
libsndfile

updated:
libvorbis
libogg
openal

- Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
2024-03-21 17:33:47 +00:00

14 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 */