5#ifndef INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_NEW_HPP_
6#define INCLUDE_GUARD_ARENE_BASE_STDLIB_INCLUDE_STDLIB_DETAIL_NEW_HPP_
14#include "stdlib/include/stdlib_detail/cstddef.hpp"
42inline void operator delete(
void*,
void*)
noexcept {}
52inline void operator delete[](
void*,
void*)
noexcept {}
void operator delete(void *, void *) noexcept
Implementation of placement delete. Used if the constructor called by a placement new expression thro...
Definition new.hpp:42
auto operator new(std::size_t, void *const ptr) noexcept -> void *
Implementation of placement new; does no dynamic allocation. This is called for all placement new exp...
Definition new.hpp:23
void operator delete[](void *, void *) noexcept
Implementation of placement delete for arrays. Used if the constructor called by an array placement n...
Definition new.hpp:52
auto operator new[](std::size_t, void *const ptr) noexcept -> void *
Implementation of placement new for arrays; does no dynamic allocation. This is called for all placem...
Definition new.hpp:34