fixed '==' operator
This commit is contained in:
2025-11-05 09:03:43 +01:00
parent 6f69217ba3
commit bb873d49d4
+1 -1
View File
@@ -155,7 +155,7 @@ class Buffer
for (int i=0; i < this->capacity(); i++)
{
if (this->m_buffer[i] != other.m_buffer[i])
if ((*this)[i] != other[i])
{
return false;
}