diff options
Diffstat (limited to 'src/rendernode.h')
-rw-r--r-- | src/rendernode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rendernode.h b/src/rendernode.h index 0dcc551..99a5316 100644 --- a/src/rendernode.h +++ b/src/rendernode.h @@ -8,7 +8,7 @@ class RenderNode : public AbstractNode { public: RenderNode(const ModuleInstantiation *mi) : AbstractNode(mi), convexity(1) { } - virtual Response accept(const class State &state, Visitor &visitor) const { + virtual Response accept(class State &state, Visitor &visitor) const { return visitor.visit(state, *this); } virtual std::string toString() const; |