mirror of https://github.com/axmolengine/axmol.git
17 lines
206 B
C
17 lines
206 B
C
|
#ifndef ALDEQUE_H
|
||
|
#define ALDEQUE_H
|
||
|
|
||
|
#include <deque>
|
||
|
|
||
|
#include "almalloc.h"
|
||
|
|
||
|
|
||
|
namespace al {
|
||
|
|
||
|
template<typename T>
|
||
|
using deque = std::deque<T, al::allocator<T>>;
|
||
|
|
||
|
} // namespace al
|
||
|
|
||
|
#endif /* ALDEQUE_H */
|