mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +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
12 changed files with 24 additions and 24 deletions
|
@ -40,7 +40,7 @@ TEST_CASE(basics)
|
|||
EXPECT_EQ(object->ref_count(), 1);
|
||||
object->ref();
|
||||
EXPECT_EQ(object->ref_count(), 2);
|
||||
object->deref();
|
||||
object->unref();
|
||||
EXPECT_EQ(object->ref_count(), 1);
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue