Skip to content

Commit 04cc892

Browse files
committed
Speculatively fix Clang build bots
This is intended to address the issues found in: https://lab.llvm.org/buildbot/#/builders/192/builds/3337 https://lab.llvm.org/buildbot/#/builders/124/builds/7968
1 parent 64466b7 commit 04cc892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/SemaDeclCXX.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16925,7 +16925,7 @@ bool Sema::EvaluateStaticAssertMessageAsString(Expr *Message,
1692516925
OverloadCandidateSet::iterator Best;
1692616926
switch (Candidates.BestViableFunction(*this, Loc, Best)) {
1692716927
case OR_Success:
16928-
return MemberLookup;
16928+
return std::move(MemberLookup);
1692916929
default:
1693016930
if (Diag)
1693116931
Candidates.NoteCandidates(

0 commit comments

Comments
 (0)