summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:48:32 +0100
committerGitHub <noreply@github.com>2025-11-18 08:48:32 +0100
commit4a0e2c718ffafa56d188a637b9180e2b2408101e (patch)
tree67a467f00496bbd544c00f8d0dfcc98fe4c230d2 /dev/CompilerKit/Ref.h
parent903b913503630d12a6b3b71a0be28b48b1b9f3d5 (diff)
parente2bb97abab728e8af5ee4a55cbf838e77c61dfb1 (diff)
Merge pull request #20 from nekernel-org/dev
License and name fixes.
Diffstat (limited to 'dev/CompilerKit/Ref.h')
-rw-r--r--dev/CompilerKit/Ref.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/CompilerKit/Ref.h b/dev/CompilerKit/Ref.h
index 5869644..01b7d96 100644
--- a/dev/CompilerKit/Ref.h
+++ b/dev/CompilerKit/Ref.h
@@ -13,7 +13,7 @@
#include <CompilerKit/Defines.h>
namespace CompilerKit {
-/// @author El Mahrouss Amlal
+/// @author Amlal El Mahrouss
/// @brief Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class Ref final {
@@ -54,7 +54,7 @@ class Ref final {
Bool m_Strong{false};
};
-// @author El Mahrouss Amlal
+// @author Amlal El Mahrouss
// @brief Non null Reference holder class, refers to a pointer of data in static memory.
template <typename T>
class NonNullRef final {