From 1dfee5fbfa32c547de39872a5defdfb2759e172e Mon Sep 17 00:00:00 2001 From: Elad <18193363+elad335@users.noreply.github.com> Date: Mon, 18 Nov 2024 17:23:47 +0200 Subject: [PATCH] lockless.h: Fixup addressing --- Utilities/lockless.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/lockless.h b/Utilities/lockless.h index 82536ff96e..3d969281da 100644 --- a/Utilities/lockless.h +++ b/Utilities/lockless.h @@ -41,7 +41,7 @@ public: { if (index - i < N) { - result = std::addressof(m_data[index - i]); + result = std::addressof(_this->m_data[index - i]); break; }