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

13 lines
225 B
C++
Raw Normal View History

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