From 0be309bcf1b36b06b4ca91172100d9f9d926a1a1 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Thu, 11 Jun 2020 16:53:11 +0200 Subject: Various places: performance-for-range-copy Change-Id: I475990d32a5211d31a77782667a2dfedba134137 Reviewed-by: hjk --- src/plugins/python/pythonutils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/python') diff --git a/src/plugins/python/pythonutils.cpp b/src/plugins/python/pythonutils.cpp index bae86fb4e14..364b97017ce 100644 --- a/src/plugins/python/pythonutils.cpp +++ b/src/plugins/python/pythonutils.cpp @@ -118,8 +118,8 @@ FilePath getPylsModulePath(CommandLine pylsCommand) QRegularExpression::MultilineOption); const QString &output = response.allOutput(); - for (auto regex : {regexCached, regexNotCached}) { - QRegularExpressionMatch result = regex.match(output); + for (const auto ®ex : {regexCached, regexNotCached}) { + const QRegularExpressionMatch result = regex.match(output); if (result.hasMatch()) { const FilePath &modulePath = FilePath::fromUserInput(result.captured(1)); cache[pylsCommand.executable()] = modulePath; -- cgit v1.2.3