diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-14 23:10:30 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-14 23:10:30 +0000 |
commit | 1e7a0c6a1d4f5c0835199c06bf5738ebc07b8745 (patch) | |
tree | 00b0fd6d5855478c2148a498a65d28fe3d347c28 /clang/lib | |
parent | 8a038652f23d50b469478cffc7f0354617529730 (diff) | |
download | bcm5719-llvm-1e7a0c6a1d4f5c0835199c06bf5738ebc07b8745.tar.gz bcm5719-llvm-1e7a0c6a1d4f5c0835199c06bf5738ebc07b8745.zip |
Attempt to fix Windows buildbot, round 2.
llvm-svn: 142014
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Sema/SemaOverload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp index 76d39d946c5..6112e0d4181 100644 --- a/clang/lib/Sema/SemaOverload.cpp +++ b/clang/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; |