refactor: Fix clang-tidy modernize-use-auto

This commit is contained in:
Lars Toenning
2025-10-09 22:35:53 +02:00
parent 899b5d6ba4
commit 29bc905e56
194 changed files with 523 additions and 531 deletions

View File

@@ -42,7 +42,7 @@ namespace MiscTest
aircraft.setCallsign("DEIHL");
aircraft.setCom1ActiveFrequency(f);
CVariant vf = aircraft.propertyByIndex(i);
const CFrequency pf = vf.value<CFrequency>();
const auto pf = vf.value<CFrequency>();
QVERIFY2(pf == f, "Frequencies should have same value");
}