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:
Alex Lorenz 2017-10-02 19:02:42 +00:00
parent 6aeea183ef
commit 4796e72bf8
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ TEST_F(RefactoringActionRulesTest, ReturnSymbolOccurrences) {
Occurrences.push_back(SymbolOccurrence(SymbolName("test"),
SymbolOccurrence::MatchingSymbol,
Selection.getBegin()));
return Occurrences;
return std::move(Occurrences);
}
};