Skip to content

Commit

Permalink
fix extra ';' in single include
Browse files Browse the repository at this point in the history
  • Loading branch information
pantor committed May 14, 2023
1 parent f7160c4 commit c0f7d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions single_include/inja/inja.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ class ExtendsStatementNode : public StatementNode {

void accept(NodeVisitor& v) const {
v.visit(*this);
};
}
};

class BlockStatementNode : public StatementNode {
Expand All @@ -690,7 +690,7 @@ class BlockStatementNode : public StatementNode {

void accept(NodeVisitor& v) const {
v.visit(*this);
};
}
};

class SetStatementNode : public StatementNode {
Expand Down

0 comments on commit c0f7d91

Please sign in to comment.