Skip to content

Commit ea7a4e4

Browse files
authored
Merge pull request #71807 from dhoepfl/patch-1
Fixed extraneous ')'
2 parents bb6de77 + ce39a75 commit ea7a4e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Sema/TypeCheckDeclPrimary.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ static bool checkExpressionMacroDefaultValueRestrictions(ParamDecl *param) {
10341034
&ctx.Diags, SF->getExportedSourceFile(),
10351035
initExpr->getLoc().getOpaquePointerValue());
10361036
#else
1037-
ctx.Diags.diagnose(initExpr->getLoc(), diag::macro_unsupported));
1037+
ctx.Diags.diagnose(initExpr->getLoc(), diag::macro_unsupported);
10381038
return false;
10391039
#endif
10401040
}

0 commit comments

Comments
 (0)