forked from OSchip/llvm-project
Revert r112154, "Fix thinko in sorting operation", it depends on r112149 which
doth lay upon the chopping block. llvm-svn: 112160
This commit is contained in:
parent
54d9c11a01
commit
60e3749181
|
@ -808,7 +808,7 @@ namespace {
|
|||
return false;
|
||||
|
||||
result = llvm::StringRef(XText).compare(YText);
|
||||
return result < 0;
|
||||
return result;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -818,4 +818,4 @@ extern "C" {
|
|||
unsigned NumResults) {
|
||||
std::stable_sort(Results, Results + NumResults, OrderCompletionResults());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue