This commit is contained in:
chatlanin 2025-01-10 11:11:01 +03:00
parent 2a01785775
commit 4018312528

View File

@ -75,8 +75,8 @@ namespace hack::patterns
int c = m_tail;
for (int i = 0; i < n; ++i)
{
c = (c + 1) % m_size;;
d[i] = m_data[c];
c = (c + 1) % m_size;
}
}