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:
Daniel Dunbar 2010-08-26 03:53:44 +00:00
parent 54d9c11a01
commit 60e3749181
1 changed files with 2 additions and 2 deletions

View File

@ -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());
}
}
}