From cc86e01df98ca84276f6cec97e1fb37fda1eb568 Mon Sep 17 00:00:00 2001 From: Elad <18193363+elad335@users.noreply.github.com> Date: Mon, 18 Nov 2024 17:43:05 +0200 Subject: [PATCH] lockless.h: Fox --- Utilities/lockless.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities/lockless.h b/Utilities/lockless.h index 3d969281da..48142de96a 100644 --- a/Utilities/lockless.h +++ b/Utilities/lockless.h @@ -45,7 +45,7 @@ public: break; } - lf_array* next = m_next; + lf_array* next = _this->m_next; if (!next) { @@ -99,7 +99,7 @@ public: } } - lf_array* next = m_next; + lf_array* next = _this->m_next; if constexpr (!std::is_void_v) {