forked from OSchip/llvm-project
Add std::move in RefactoringActionRulesTest.cpp
Should fix http://green.lab.llvm.org/green/job/clang-stage1-cmake-RA-incremental llvm-svn: 314708
This commit is contained in:
parent
6aeea183ef
commit
4796e72bf8
|
@ -196,7 +196,7 @@ TEST_F(RefactoringActionRulesTest, ReturnSymbolOccurrences) {
|
|||
Occurrences.push_back(SymbolOccurrence(SymbolName("test"),
|
||||
SymbolOccurrence::MatchingSymbol,
|
||||
Selection.getBegin()));
|
||||
return Occurrences;
|
||||
return std::move(Occurrences);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue