mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Remove auto misuse cases.
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user