Fix uninitialized member found by msan build bot.

llvm-svn: 314246
This commit is contained in:
Richard Smith 2017-09-26 21:33:43 +00:00
parent ba9fa9fd16
commit fd54435b95
1 changed files with 1 additions and 1 deletions

View File

@ -10271,7 +10271,7 @@ struct CompareOverloadCandidatesForDisplay {
CompareOverloadCandidatesForDisplay( CompareOverloadCandidatesForDisplay(
Sema &S, SourceLocation Loc, size_t NArgs, Sema &S, SourceLocation Loc, size_t NArgs,
OverloadCandidateSet::CandidateSetKind CSK) OverloadCandidateSet::CandidateSetKind CSK)
: S(S), NumArgs(NArgs) {} : S(S), NumArgs(NArgs), CSK(CSK) {}
bool operator()(const OverloadCandidate *L, bool operator()(const OverloadCandidate *L,
const OverloadCandidate *R) { const OverloadCandidate *R) {