mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
AK: Let's call decrementing reference counts "unref" instead of "deref"
It always bothered me that we're using the overloaded "dereference" term for this. Let's call it "unreference" instead. :^)
This commit is contained in:
@@ -46,10 +46,10 @@ inline void ref_if_not_null(T* ptr)
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
inline void deref_if_not_null(T* ptr)
|
||||
inline void unref_if_not_null(T* ptr)
|
||||
{
|
||||
if (ptr)
|
||||
ptr->deref();
|
||||
ptr->unref();
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
@@ -103,7 +103,7 @@ public:
|
||||
}
|
||||
~NonnullRefPtr()
|
||||
{
|
||||
deref_if_not_null(m_ptr);
|
||||
unref_if_not_null(m_ptr);
|
||||
m_ptr = nullptr;
|
||||
#ifdef SANITIZE_PTRS
|
||||
if constexpr (sizeof(T*) == 8)
|
||||
|
||||
Reference in New Issue
Block a user