Remove redundant copy constructor of AllocatorOwner

This commit is contained in:
Benoit Blanchon
2021-12-19 12:52:40 +01:00
parent ca073fda46
commit 84e9447f12

View File

@ -14,7 +14,6 @@ template <typename TAllocator>
class AllocatorOwner {
public:
AllocatorOwner() {}
AllocatorOwner(const AllocatorOwner& src) : _allocator(src._allocator) {}
AllocatorOwner(TAllocator a) : _allocator(a) {}
void* allocate(size_t size) {