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; }