AuroraOpenALSoft/common/albyte.h
Chris Robinson abfb584f14 Simplify al::byte
It's just an alias for unsigned char now, and no longer strongly-typed like
std::byte.
2022-03-30 15:52:15 -07:00

18 lines
232 B
C++

#ifndef AL_BYTE_H
#define AL_BYTE_H
#include <cstddef>
#include <cstdint>
#include <limits>
#include <type_traits>
using uint = unsigned int;
namespace al {
using byte = unsigned char;
} // namespace al
#endif /* AL_BYTE_H */