summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-17 19:36:56 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-17 19:36:56 +0100
commit5a0a901f6d4a4499c13877376ff34e6411500410 (patch)
tree35662af54535ccc07366b1a3a554f6296e76f4ce
parentb81c97572fdfd44b838752c94ae0f89e59f9459f (diff)
unrelated: revert last changes.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
-rw-r--r--Private/NewKit/Ref.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/NewKit/Ref.hpp b/Private/NewKit/Ref.hpp
index aac5537f..5ae7ea80 100644
--- a/Private/NewKit/Ref.hpp
+++ b/Private/NewKit/Ref.hpp
@@ -14,7 +14,7 @@ namespace HCore {
template <typename T>
class Ref final {
public:
- explicit Ref() = default;
+ Ref() = default;
~Ref() = default;
public:
@@ -47,7 +47,7 @@ class NonNullRef final {
NonNullRef() = delete;
NonNullRef(nullPtr) = delete;
- explicit NonNullRef(T *ref) : m_Ref(ref, true) {}
+ NonNullRef(T *ref) : m_Ref(ref, true) {}
Ref<T> &operator->() {
MUST_PASS(m_Ref);