aboutsummaryrefslogtreecommitdiffstats
path: root/al/source.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-01-25 09:24:10 -0800
committerChris Robinson <[email protected]>2021-01-25 09:24:10 -0800
commitac5d40e40a0155351fe1be4aab30017b6a13a859 (patch)
tree123b88c12c02b7d7d1d3a1aec0cace9319117f46 /al/source.h
parent71e6bcbd62ab8685f3da660b0bb391e8285bcbce (diff)
Move al::deque to a common header
Diffstat (limited to 'al/source.h')
-rw-r--r--al/source.h8
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