2022-02-23 23:08:28 -05:00
|
|
|
#ifndef WRAP_DEQUE_HPP
|
|
|
|
|
#define WRAP_DEQUE_HPP
|
|
|
|
|
|
|
|
|
|
#include "two-mallocs.hpp"
|
|
|
|
|
#include <deque>
|
|
|
|
|
|
|
|
|
|
namespace eng {
|
|
|
|
|
template<class T>
|
2022-02-25 19:57:23 -05:00
|
|
|
using deque = std::deque<T, eng::allocator<T>>;
|
2022-02-23 23:08:28 -05:00
|
|
|
} // namespace eng
|
|
|
|
|
|
|
|
|
|
#endif // WRAP_DEQUE_HPP
|