aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaOverload.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-10-14 23:10:30 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-10-14 23:10:30 +0000
commitce1846e4ed7cec16518894073f7642a9b1a48004 (patch)
tree54db24402aaa59ebeec75926064358cf2c148658 /lib/Sema/SemaOverload.cpp
parentdfa64ba45922e1c28e36341bdf34785fea74659b (diff)
Attempt to fix Windows buildbot, round 2.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r--lib/Sema/SemaOverload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp
index 76d39d946c..6112e0d418 100644
--- a/lib/Sema/SemaOverload.cpp
+++ b/lib/Sema/SemaOverload.cpp
@@ -7510,7 +7510,7 @@ struct CompareOverloadCandidatesForDisplay {
if (L->DeductionFailure.Result != R->DeductionFailure.Result)
return RankDeductionFailure(L->DeductionFailure)
- <= RankDeductionFailure(R->DeductionFailure);
+ < RankDeductionFailure(R->DeductionFailure);
} else if (R->FailureKind == ovl_fail_bad_deduction)
return false;