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:
Orgad Shaneh
2019-05-07 08:48:13 +03:00
committed by Orgad Shaneh
parent e5f7df2eaa
commit fffffad325

View File

@@ -93,7 +93,7 @@ std::unique_ptr<clang::ASTConsumer> SymbolLocationFinderAction::newASTConsumer()
consumer->setSourceLocations(&m_sourceLocations);
return std::move(consumer);
return consumer;
}
} // namespace ClangBackEnd