BAN: Move placement new to New.h
I have no idea why they were defined in Move.h
This commit is contained in:
@@ -16,3 +16,6 @@ namespace BAN
|
||||
static constexpr void(&deallocator)(void*) = free;
|
||||
#endif
|
||||
}
|
||||
|
||||
inline void* operator new(size_t, void* addr) { return addr; }
|
||||
inline void* operator new[](size_t, void* addr) { return addr; }
|
||||
|
||||
Reference in New Issue
Block a user