diff options
author | Chris Robinson <[email protected]> | 2021-01-25 09:24:10 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-01-25 09:24:10 -0800 |
commit | ac5d40e40a0155351fe1be4aab30017b6a13a859 (patch) | |
tree | 123b88c12c02b7d7d1d3a1aec0cace9319117f46 /al/source.h | |
parent | 71e6bcbd62ab8685f3da660b0bb391e8285bcbce (diff) |
Move al::deque to a common header
Diffstat (limited to 'al/source.h')
-rw-r--r-- | al/source.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/al/source.h b/al/source.h index f17395c3..6572864f 100644 --- a/al/source.h +++ b/al/source.h @@ -12,6 +12,7 @@ #include "AL/alc.h" #include "alcontext.h" +#include "aldeque.h" #include "almalloc.h" #include "alnumeric.h" #include "alu.h" @@ -22,13 +23,6 @@ struct ALbuffer; struct ALeffectslot; -namespace al { - -template<typename T> -using deque = std::deque<T, al::allocator<T>>; - -} // namespace al - #define DEFAULT_SENDS 2 |