Yet more work on eng::malloc
This commit is contained in:
@@ -6,7 +6,9 @@
|
||||
|
||||
namespace eng {
|
||||
template<class T>
|
||||
using vector = std::vector<T, eng::allocator<T>>;
|
||||
class vector : public std::vector<T, eng::allocator<T>>, public eng::opnew {
|
||||
using std::vector<T, eng::allocator<T>>::vector;
|
||||
};
|
||||
} // namespace eng
|
||||
|
||||
#endif // WRAP_VECTOR_HPP
|
||||
|
||||
Reference in New Issue
Block a user