From c0f7d91723313f334fe396ef76f875cbd5e9c945 Mon Sep 17 00:00:00 2001 From: pantor Date: Sun, 14 May 2023 12:11:51 +0200 Subject: [PATCH] fix extra ';' in single include --- single_include/inja/inja.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/single_include/inja/inja.hpp b/single_include/inja/inja.hpp index 64f9957..d5899dc 100644 --- a/single_include/inja/inja.hpp +++ b/single_include/inja/inja.hpp @@ -677,7 +677,7 @@ public: void accept(NodeVisitor& v) const { v.visit(*this); - }; + } }; class BlockStatementNode : public StatementNode { @@ -690,7 +690,7 @@ public: void accept(NodeVisitor& v) const { v.visit(*this); - }; + } }; class SetStatementNode : public StatementNode {