Files
integration/luprex/core/wrap/wrap-deque.hpp

13 lines
219 B
C++
Raw Normal View History

#ifndef WRAP_DEQUE_HPP
#define WRAP_DEQUE_HPP
#include "two-mallocs.hpp"
#include <deque>
namespace eng {
template<class T>
using deque = std::deque<T, eng::allocator<T>>;
} // namespace eng
#endif // WRAP_DEQUE_HPP