diff options
author | Marius Kintel <marius@kintel.net> | 2010-08-28 15:34:22 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:38 (GMT) |
commit | 93f3d4a1b6251523428179261dc070df44b0b317 (patch) | |
tree | ee5d79ad52a46d3249cebcb4085673298656091f /src/csgnode.h | |
parent | c868525c6760f97d4cdaf59d35d38becdda4bdf5 (diff) |
CSGTermRenderer refactoring: Added matrix to traversal state
Diffstat (limited to 'src/csgnode.h')
-rw-r--r-- | src/csgnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csgnode.h b/src/csgnode.h index 28aa0f6..d5ebfc2 100644 --- a/src/csgnode.h +++ b/src/csgnode.h @@ -15,7 +15,7 @@ class CsgNode : public AbstractNode public: csg_type_e type; CsgNode(const ModuleInstantiation *mi, csg_type_e type) : AbstractNode(mi), type(type) { } - 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; |