Skip to content

Commit

Permalink
fix extra ‘;’ after in-class function definition (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaraslaut committed May 14, 2023
1 parent 9e92a7c commit f7160c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/inja/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class ExtendsStatementNode : public StatementNode {

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

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

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

class SetStatementNode : public StatementNode {
Expand Down

0 comments on commit f7160c4

Please sign in to comment.