repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avoid inlining the base_exception destructor
[openal-soft.git]
/
common
/
albyte.h
blob
be586869d8aca3e6eb4763cdf1d0fb14ed7a6a11
1
#ifndef AL_BYTE_H
2
#define AL_BYTE_H
3
4
#include <cstddef>
5
#include <cstdint>
6
#include <limits>
7
#include <type_traits>
8
9
using
uint
=
unsigned int
;
10
11
namespace
al
{
12
13
using
byte
=
unsigned char
;
14
15
}
// namespace al
16
17
#endif
/* AL_BYTE_H */