summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-17 11:00:30 +0100
committerGitHub <noreply@github.com>2025-11-17 11:00:30 +0100
commit2e9741a0af3ffcc613101b47ba39b883e26e39ea (patch)
tree73c05e9d2e51488d895e9d899eaf29640265e552 /dev/CompilerKit/Ref.h
parent215f6fc35253a2326888b49a618f5cb758813977 (diff)
parent0cca08fb5a26a9c50632d2a2a7cd49e8db55badc (diff)
Merge pull request #18 from nekernel-org/dev
version: v0.0.7
Diffstat (limited to 'dev/CompilerKit/Ref.h')
-rw-r--r--dev/CompilerKit/Ref.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/CompilerKit/Ref.h b/dev/CompilerKit/Ref.h
index 381b628..5869644 100644
--- a/dev/CompilerKit/Ref.h
+++ b/dev/CompilerKit/Ref.h
@@ -3,7 +3,7 @@
* ========================================================
*
* CompilerKit
- * Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved.
+ * Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under Apache 2.0.
*
* ========================================================
*/
@@ -13,8 +13,8 @@
#include <CompilerKit/Defines.h>
namespace CompilerKit {
-// @author EL Mahrouss Amlal
-// @brief Reference holder class, refers to a pointer of data in static memory.
+/// @author El Mahrouss Amlal
+/// @brief Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class Ref final {
public:
@@ -54,7 +54,7 @@ class Ref final {
Bool m_Strong{false};
};
-// @author EL Mahrouss Amlal
+// @author El Mahrouss Amlal
// @brief Non null Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class NonNullRef final {