forked from OSchip/llvm-project
Fix a compile error to get bots back to green.
Fixes http://lab.llvm.org:8011/builders/clang-x64-windows-msvc/builds/13716
This commit is contained in:
parent
f9c46229e4
commit
bcda877b43
|
@ -130,12 +130,12 @@ getFailureInfoImpl(StringRef Name, bool IsInGlobalNamespace,
|
||||||
.getValueOr(Name);
|
.getValueOr(Name);
|
||||||
};
|
};
|
||||||
if (auto Fixup = getDoubleUnderscoreFixup(InProgressFixup(), LangOpts))
|
if (auto Fixup = getDoubleUnderscoreFixup(InProgressFixup(), LangOpts))
|
||||||
AppendFailure(DoubleUnderscoreTag, *std::move(Fixup));
|
AppendFailure(DoubleUnderscoreTag, std::move(*Fixup));
|
||||||
if (auto Fixup = getUnderscoreCapitalFixup(InProgressFixup()))
|
if (auto Fixup = getUnderscoreCapitalFixup(InProgressFixup()))
|
||||||
AppendFailure(UnderscoreCapitalTag, *std::move(Fixup));
|
AppendFailure(UnderscoreCapitalTag, std::move(*Fixup));
|
||||||
if (auto Fixup = getUnderscoreGlobalNamespaceFixup(InProgressFixup(),
|
if (auto Fixup = getUnderscoreGlobalNamespaceFixup(InProgressFixup(),
|
||||||
IsInGlobalNamespace))
|
IsInGlobalNamespace))
|
||||||
AppendFailure(GlobalUnderscoreTag, *std::move(Fixup));
|
AppendFailure(GlobalUnderscoreTag, std::move(*Fixup));
|
||||||
|
|
||||||
return Info;
|
return Info;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue