forked from OSchip/llvm-project
[polly] Change to range-based invocation of llvm::sort
llvm-svn: 351502
This commit is contained in:
parent
e912cc512d
commit
8108b7a60f
|
@ -719,7 +719,7 @@ static void printSortedPolyhedra(isl::union_set USet, llvm::raw_ostream &OS,
|
|||
}
|
||||
|
||||
// Sort the polyhedra.
|
||||
llvm::sort(BSets.begin(), BSets.end(), orderComparer);
|
||||
llvm::sort(BSets, orderComparer);
|
||||
|
||||
// Print the polyhedra.
|
||||
bool First = true;
|
||||
|
|
Loading…
Reference in New Issue