Fix unused lambda capture. Follow up to r299653.

llvm-svn: 299671
This commit is contained in:
Ivan Krasin 2017-04-06 17:42:05 +00:00
parent 4cce35f0ce
commit 1e1acbc95b
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ void RecursiveCloneTypeIIConstraint::constrain(
// Sort hash_codes in StmtsByHash.
std::stable_sort(StmtsByHash.begin(), StmtsByHash.end(),
[this](std::pair<size_t, StmtSequence> LHS,
[](std::pair<size_t, StmtSequence> LHS,
std::pair<size_t, StmtSequence> RHS) {
return LHS.first < RHS.first;
});