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
Silence an MSVC warning
[openal-soft.git]
/
common
/
vector.h
blob
1b69d6a77fea2da881a4f40d6ce6c9026ff7b4f2
1
#ifndef AL_VECTOR_H
2
#define AL_VECTOR_H
3
4
#include <vector>
5
6
#include
"almalloc.h"
7
8
namespace
al
{
9
10
template
<
typename T
,
size_t
alignment
=
alignof
(
T
)>
11
using
vector
=
std
::
vector
<
T
,
al
::
allocator
<
T
,
alignment
>>;
12
13
}
// namespace al
14
15
#endif
/* AL_VECTOR_H */