Files
integration/luprex/cpp/wrap/wrap-vector.hpp
2026-02-25 01:58:19 -05:00

12 lines
245 B
C++

#pragma once
#include "eng-malloc.hpp"
#include <vector>
namespace eng {
template<class T>
class vector : public std::vector<T, eng::allocator<T>>, public eng::opnew {
using std::vector<T, eng::allocator<T>>::vector;
};
} // namespace eng