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
Don't handle EFX functions in the router
[openal-soft.git]
/
common
/
aldeque.h
blob
3f99bf0074695bbaad46abfb3896dc1bf27b2528
1
#ifndef ALDEQUE_H
2
#define ALDEQUE_H
3
4
#include <deque>
5
6
#include
"almalloc.h"
7
8
9
namespace
al
{
10
11
template
<
typename T
>
12
using
deque
=
std
::
deque
<
T
,
al
::
allocator
<
T
>>;
13
14
}
// namespace al
15
16
#endif
/* ALDEQUE_H */