summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-15 22:35:55 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-15 22:35:55 +0100
commit730b76e1aae96f9a5cafc13634d6f014e598abaf (patch)
treeb9c6542602d4fd0138eb7a88e8a9a9d13971e88e /dev/CompilerKit/Ref.h
parent49064df5303b9a96f6b11dd0aed27dc1e269aa9e (diff)
feat: API and codebase tweaks.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/Ref.h')
-rw-r--r--dev/CompilerKit/Ref.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/CompilerKit/Ref.h b/dev/CompilerKit/Ref.h
index 381b628..10082b3 100644
--- a/dev/CompilerKit/Ref.h
+++ b/dev/CompilerKit/Ref.h
@@ -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 {