From bcc6100941117dc84fb9ece3812da340d96c61a6 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 2 Dec 2025 15:47:44 -0500 Subject: chore! reworked source code to exclude `Bool`, `Boolean`, and `nullPtr` macros. fix: ErrorOr: Return `Ref&` when using Leak. Signed-off-by: Amlal El Mahrouss --- src/LibC++/new.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/LibC++') diff --git a/src/LibC++/new.h b/src/LibC++/new.h index 27c8159..faa9da4 100644 --- a/src/LibC++/new.h +++ b/src/LibC++/new.h @@ -11,12 +11,12 @@ namespace std { struct nothrow_t final { explicit nothrow_t() = default; - ~nothrow_t() = default; + ~nothrow_t() = default; }; struct placement_t final { explicit placement_t() = default; - ~placement_t() = default; + ~placement_t() = default; void* __base{}; int32_t __align{}; -- cgit v1.2.3