forked from qt-creator/qt-creator
ClangRefactoring: Remove redundant std::move
Detected by GCC9. Change-Id: I12b4de063a736d17fb6a7105d622812df1981a1a Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io> Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
e5f7df2eaa
commit
fffffad325
@@ -93,7 +93,7 @@ std::unique_ptr<clang::ASTConsumer> SymbolLocationFinderAction::newASTConsumer()
|
||||
|
||||
consumer->setSourceLocations(&m_sourceLocations);
|
||||
|
||||
return std::move(consumer);
|
||||
return consumer;
|
||||
}
|
||||
|
||||
} // namespace ClangBackEnd
|
||||
|
Reference in New Issue
Block a user