lockless.h: Fixup addressing

This commit is contained in:
Elad 2024-11-18 17:23:47 +02:00 committed by GitHub
parent 2b32cbb28f
commit e38b6cd391
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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