From d532b43153cb68d6e92c5dac58cbd3c8ab4f60af Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 26 Dec 2025 10:10:06 +0100 Subject: feat! Use header guards instead of pragma once. Signed-off-by: Amlal El Mahrouss --- include/LibC++/base_alloc.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/LibC++/base_alloc.h') diff --git a/include/LibC++/base_alloc.h b/include/LibC++/base_alloc.h index 96a8161..f8d9dbc 100644 --- a/include/LibC++/base_alloc.h +++ b/include/LibC++/base_alloc.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef NECTAR_LIBCXX_BASE_ALLOC_H +#define NECTAR_LIBCXX_BASE_ALLOC_H #include @@ -42,3 +43,5 @@ inline void release_nothrow(KindClass ptr) noexcept { } } // namespace std::base_alloc +#endif // NECTAR_LIBCXX_BASE_ALLOC_H + -- cgit v1.2.3