summaryrefslogtreecommitdiffhomepage
path: root/include/LibC++/base_alloc.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 02:31:16 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 02:31:16 +0100
commit365e1851ab1b2f2e7eca2fb0697e5b7ff1023b60 (patch)
tree4f82da02b080a6de9ba0756bf1f21c319569831f /include/LibC++/base_alloc.h
parent3550c29636d9a46f40d02908605144221bb7eb9b (diff)
chore: Nectar grunt work on runtime library and test code.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/LibC++/base_alloc.h')
-rw-r--r--include/LibC++/base_alloc.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/LibC++/base_alloc.h b/include/LibC++/base_alloc.h
deleted file mode 100644
index 6c7ad06..0000000
--- a/include/LibC++/base_alloc.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
-// Licensed under the Apache License, Version 2.0 (See accompanying
-// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
-
-#ifndef NECTAR_LIBCXX_BASE_ALLOC_H
-#define NECTAR_LIBCXX_BASE_ALLOC_H
-
-#include <LibC++/defines.h>
-
-namespace std::base_alloc {
-/// @brief allocate a new class.
-/// @tparam KindClass the class type to allocate.
-template <class KindClass, typename... Args>
-inline KindClass* allocate(Args&&... args) {
- return new KindClass(forward(args)...);
-}
-
-/// @brief allocate a new class.
-/// @note aborts on error.
-/// @tparam KindClass the class type to allocate.
-template <class KindClass, typename... Args>
-inline KindClass* allocate_nothrow(Args&&... args) noexcept {
- return allocate(forward(args)...);
-}
-
-/// @brief free a class.
-/// @tparam KindClass the class type to allocate.
-template <class KindClass>
-inline void release(KindClass ptr) {
- if (!ptr) return;
-
- delete ptr;
-}
-
-/// @brief destroy and free a class.
-/// @note aborts on error.
-/// @tparam KindClass the class type to allocate.
-template <class KindClass>
-inline void release_nothrow(KindClass ptr) noexcept {
- release(ptr);
-}
-} // namespace std::base_alloc
-
-#endif // NECTAR_LIBCXX_BASE_ALLOC_H