From 3192329b9b653d91fb19cb5cc497548801d9ee10 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 19 Dec 2025 10:58:20 +0100 Subject: chore: Updated `PlaceableType` to `PlaceableCallable`. Signed-off-by: Amlal El Mahrouss --- include/LibC++/new.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/LibC++') diff --git a/include/LibC++/new.h b/include/LibC++/new.h index 23bfa50..9a7d7da 100644 --- a/include/LibC++/new.h +++ b/include/LibC++/new.h @@ -44,8 +44,8 @@ void operator _placement_delete(void*); /// \note This should NOT fail, failure to meet the conditions will cause the program's state to be aborted. /// \brief Set the placement policy of future memory allocations. -template -void set_placement_policy(const PlaceableType&) noexcept; +template +void set_placement_policy(const PlaceableCallable&) noexcept; void* operator new(size_t, const nothrow_t&) noexcept; void* operator new(size_t, void*) noexcept; -- cgit v1.2.3