Skip to content

Commit

Permalink
Remove extra semicolon from macro. Fixes a osx warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvassilev committed Dec 13, 2024
1 parent a1063d4 commit c2f9457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Differentiator/StmtClone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ DEFINE_CLONE_EXPR(SubstNonTypeTemplateParmExpr,
(CloneType(Node->getType()), Node->getValueKind(),
Node->getBeginLoc(), Node->getReplacement(),
Node->getAssociatedDecl(), Node->getIndex(),
Node->getPackIndex(), Node->isReferenceParameter()));
Node->getPackIndex(), Node->isReferenceParameter()))
#endif
DEFINE_CREATE_EXPR(PseudoObjectExpr, (Ctx, Node->getSyntacticForm(), llvm::SmallVector<Expr*, 4>(Node->semantics_begin(), Node->semantics_end()), Node->getResultExprIndex()))
// NOLINTEND(modernize-use-auto)
Expand Down

0 comments on commit c2f9457

Please sign in to comment.