mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-19 06:33:49 +00:00
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.
14 lines
262 B
C++
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 */
|