aboutsummaryrefslogtreecommitdiffstats
path: root/al/source.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-10-11 23:06:36 -0700
committerChris Robinson <[email protected]>2023-10-11 23:06:36 -0700
commitdbc09095adc83b0b88b22cd094731b4907cd371b (patch)
tree7364258942c7239c37525b46f1680a0da9388a9d /al/source.h
parent5d48351240ed29d28517de5ab3d7985c72e4b09b (diff)
Remove an unnecessary deque with a custom allocator
Diffstat (limited to 'al/source.h')
-rw-r--r--al/source.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/al/source.h b/al/source.h
index 2bdeb2a3..95978ec7 100644
--- a/al/source.h
+++ b/al/source.h
@@ -15,7 +15,6 @@
#include "alc/alu.h"
#include "alc/context.h"
#include "alc/inprogext.h"
-#include "aldeque.h"
#include "almalloc.h"
#include "alnumeric.h"
#include "atomic.h"
@@ -139,7 +138,7 @@ struct ALsource {
ALenum state{AL_INITIAL};
/** Source Buffer Queue head. */
- al::deque<ALbufferQueueItem> mQueue;
+ std::deque<ALbufferQueueItem> mQueue;
bool mPropsDirty{true};