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

13 lines
224 B
C++
Raw Normal View History

#ifndef WRAP_VECTOR_HPP
#define WRAP_VECTOR_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.hpp"
#include <vector>
namespace eng {
template<class T>
using vector = std::vector<T, eng::allocator<T>>;
} // namespace eng
#endif // WRAP_VECTOR_HPP