mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Remove auto misuse cases.
This commit is contained in:
parent
215acd52e8
commit
501c64a12f
2 changed files with 2 additions and 2 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue