forked from qt-creator/qt-creator
CMakePM: clang-tidy fix for 'no-automatic-move'
See https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang- tidy/checks/performance/no-automatic-move.html Change-Id: If265c9b0e2aea49e5923f079cd621e10bb958286 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -1532,7 +1532,7 @@ void CMakeBuildSystem::runCTest()
|
||||
if (bt != -1) {
|
||||
QSet<int> seen;
|
||||
std::function<QJsonObject(int)> findAncestor = [&](int index){
|
||||
const QJsonObject node = nodes.at(index).toObject();
|
||||
QJsonObject node = nodes.at(index).toObject();
|
||||
const int parent = node.value("parent").toInt(-1);
|
||||
if (parent < 0 || !Utils::insert(seen, parent))
|
||||
return node;
|
||||
|
||||
Reference in New Issue
Block a user