We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf2a47 commit b9b312dCopy full SHA for b9b312d
clang/lib/AST/Expr.cpp
@@ -748,9 +748,7 @@ std::string PredefinedExpr::ComputeName(PredefinedIdentKind IK,
748
if (MD->isVirtual() && IK != PredefinedIdentKind::PrettyFunctionNoVirtual)
749
Out << "virtual ";
750
if (MD->isStatic()) {
751
- bool IsFunctionInMSVCCommpatEnv =
752
- IK == PredefinedIdentKind::Function && LO.MSVCCompat;
753
- if (ForceElaboratedPrinting && !IsFunctionInMSVCCommpatEnv)
+ if (!ForceElaboratedPrinting)
754
Out << "static ";
755
}
756
0 commit comments