mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 22:22:55 +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:
parent
4aa1b5b40e
commit
3de5439579
Notes:
sideshowbarker
2024-07-19 09:52:10 +09:00
Author: https://github.com/awesomekling
Commit: 3de5439579
12 changed files with 24 additions and 24 deletions
|
@ -48,7 +48,7 @@ public:
|
|||
++m_ref_count;
|
||||
}
|
||||
|
||||
void deref()
|
||||
void unref()
|
||||
{
|
||||
ASSERT(m_ref_count);
|
||||
if (!--m_ref_count) {
|
||||
|
@ -60,7 +60,7 @@ public:
|
|||
for (auto* child = m_first_child; child; child = next_child) {
|
||||
next_child = child->m_next_sibling;
|
||||
child->m_parent = nullptr;
|
||||
child->deref();
|
||||
child->unref();
|
||||
}
|
||||
delete static_cast<T*>(this);
|
||||
}
|
||||
|
@ -221,7 +221,7 @@ inline NonnullRefPtr<T> TreeNode<T>::remove_child(NonnullRefPtr<T> node, bool ca
|
|||
if (call_removed_from)
|
||||
node->removed_from(static_cast<T&>(*this));
|
||||
|
||||
node->deref();
|
||||
node->unref();
|
||||
|
||||
return node;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue