aboutsummaryrefslogtreecommitdiff
path: root/src/core/ksharedconfig.cpp
diff options
context:
space:
mode:
authorLaurent Montel <montel@kde.org>2021-08-28 18:05:30 +0200
committerLaurent Montel <montel@kde.org>2021-08-28 18:05:30 +0200
commitdffdff73fa98a4fdebca38fb4a41938541ffb1c1 (patch)
tree7f1c9fb2c402eef2b7ecc90ec9d31cc506160b1e /src/core/ksharedconfig.cpp
parent3259a6e6530cb0526bf71733ba28015f481f056e (diff)
downloadkconfig-dffdff73fa98a4fdebca38fb4a41938541ffb1c1.tar.gz
kconfig-dffdff73fa98a4fdebca38fb4a41938541ffb1c1.tar.bz2
GIT_SILENT: we can use std::as_const directly
Diffstat (limited to 'src/core/ksharedconfig.cpp')
-rw-r--r--src/core/ksharedconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ksharedconfig.cpp b/src/core/ksharedconfig.cpp
index 98aa4c5e..09cd35f1 100644
--- a/src/core/ksharedconfig.cpp
+++ b/src/core/ksharedconfig.cpp
@@ -78,7 +78,7 @@ KSharedConfigPtr KSharedConfig::openConfig(const QString &_fileName, OpenFlags f
list->mainConfig = nullptr;
}
- for (auto *cfg : qAsConst(*list)) {
+ for (auto *cfg : std::as_const(*list)) {
if (cfg->name() == fileName && cfg->d_ptr->openFlags == flags && cfg->locationType() == resType
// cfg->backend()->type() == backend
) {