summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:33:46 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:33:46 +0100
commit999dc83cac37efc109da4d562a8a75d1f6fc7c86 (patch)
treee240f01cb9a00f67e0b94a8e7d139c2b41b294ec /include/CompilerKit/Ref.h
parent7fd421a88005d9a3636284c7a15628111fdf41c3 (diff)
feat: CompilerKit: Refactor NECTI_ symbols to NECTAR_.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Ref.h')
-rw-r--r--include/CompilerKit/Ref.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/CompilerKit/Ref.h b/include/CompilerKit/Ref.h
index 4063508..3cdac83 100644
--- a/include/CompilerKit/Ref.h
+++ b/include/CompilerKit/Ref.h
@@ -28,7 +28,7 @@ class StrongRef {
}
}
- NECTI_COPY_DEFAULT(StrongRef)
+ NECTAR_COPY_DEFAULT(StrongRef)
using Type = T;
@@ -65,7 +65,7 @@ class WeakRef final : public StrongRef<T> {
WeakRef() = delete;
~WeakRef() = default;
- NECTI_COPY_DEFAULT(WeakRef)
+ NECTAR_COPY_DEFAULT(WeakRef)
public:
using Type = T;