mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 06:40:05 +00:00
AK: Unbreak ref counting hooks in RefCounted
Same fix as5871072ed3
, but for userspace this time. Regressed inc4a0f01b02
.
This commit is contained in:
parent
01823746e3
commit
0e70759271
Notes:
sideshowbarker
2024-07-17 21:24:41 +09:00
Author: https://github.com/awesomekling
Commit: 0e70759271
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class RefCounted : public RefCountedBase {
|
||||||
public:
|
public:
|
||||||
bool unref() const
|
bool unref() const
|
||||||
{
|
{
|
||||||
auto const* that = static_cast<T const*>(this);
|
auto* that = const_cast<T*>(static_cast<T const*>(this));
|
||||||
|
|
||||||
auto new_ref_count = deref_base();
|
auto new_ref_count = deref_base();
|
||||||
if (new_ref_count == 0) {
|
if (new_ref_count == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue