forked from bblanchon/ArduinoJson
Remove redundant copy constructor of AllocatorOwner
This commit is contained in:
@ -14,7 +14,6 @@ template <typename TAllocator>
|
|||||||
class AllocatorOwner {
|
class AllocatorOwner {
|
||||||
public:
|
public:
|
||||||
AllocatorOwner() {}
|
AllocatorOwner() {}
|
||||||
AllocatorOwner(const AllocatorOwner& src) : _allocator(src._allocator) {}
|
|
||||||
AllocatorOwner(TAllocator a) : _allocator(a) {}
|
AllocatorOwner(TAllocator a) : _allocator(a) {}
|
||||||
|
|
||||||
void* allocate(size_t size) {
|
void* allocate(size_t size) {
|
||||||
|
Reference in New Issue
Block a user