diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-02 15:47:44 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-02 15:49:18 -0500 |
| commit | bcc6100941117dc84fb9ece3812da340d96c61a6 (patch) | |
| tree | d27a97e5a4a8cfa6bfdb3688c2be0183f69e3fbd /src/LibC++ | |
| parent | f7930b3a1279922cf9e6e75e651fe9b5df247bc6 (diff) | |
chore! reworked source code to exclude `Bool`, `Boolean`, and `nullPtr` macros.
fix: ErrorOr: Return `Ref<T>&` when using Leak.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/LibC++')
| -rw-r--r-- | src/LibC++/new.h | 4 |
1 files changed, 2 insertions, 2 deletions
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{}; |
