Remove auto misuse cases.

This commit is contained in:
Pāvels Nadtočajevs 2025-04-14 16:54:57 +03:00
parent 215acd52e8
commit 501c64a12f
No known key found for this signature in database
GPG key ID: 8413210218EF35D2
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ TEST_CASE("[AHashMap] Insert, iterate and remove many elements") {
//insert order should have been kept
int idx = 0;
for (auto &K : map) {
for (const KeyValue<int, int> &K : map) {
CHECK(idx == K.key);
CHECK(idx == K.value);
CHECK(map.has(idx));