Modules/Allocators/public/NewPlacement.hpp
2024-11-24 22:36:45 +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; }