Avoid inlining the base_exception destructor
[openal-soft.git] / common / albyte.h
blobbe586869d8aca3e6eb4763cdf1d0fb14ed7a6a11
1 #ifndef AL_BYTE_H
2 #define AL_BYTE_H
4 #include <cstddef>
5 #include <cstdint>
6 #include <limits>
7 #include <type_traits>
9 using uint = unsigned int;
11 namespace al {
13 using byte = unsigned char;
15 } // namespace al
17 #endif /* AL_BYTE_H */