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:
Andreas Kling 2020-01-23 15:14:21 +01:00
commit 3de5439579
Notes: sideshowbarker 2024-07-19 09:52:10 +09:00
12 changed files with 24 additions and 24 deletions

View file

@ -46,7 +46,7 @@ public:
++m_retain_count;
}
void deref()
void unref()
{
ASSERT(m_retain_count);
if (!--m_retain_count) {