Modules/Allocators/public/NewPlacement.hpp
2023-07-23 15:32:02 +03:00

6 lines
213 B
C++

#pragma once
#include "Common.hpp"
inline void* operator new(std::size_t aSize, void* aWhere) noexcept { return aWhere; }
inline void* operator new[](std::size_t aSize, void* aWhere) noexcept { return aWhere; }