aboutsummaryrefslogtreecommitdiff
path: root/src/kconfig_compiler/kconfig_compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kconfig_compiler/kconfig_compiler.cpp')
-rw-r--r--src/kconfig_compiler/kconfig_compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kconfig_compiler/kconfig_compiler.cpp b/src/kconfig_compiler/kconfig_compiler.cpp
index 761e64fc..fb7e7a68 100644
--- a/src/kconfig_compiler/kconfig_compiler.cpp
+++ b/src/kconfig_compiler/kconfig_compiler.cpp
@@ -773,7 +773,7 @@ int main(int argc, char **argv)
}
// TODO: Move this to somewhere saner.
- for (const auto &signal : qAsConst(parseResult.signalList)) {
+ for (const auto &signal : std::as_const(parseResult.signalList)) {
parseResult.hasNonModifySignals |= !signal.modify;
}