diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-11 05:33:18 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-11 05:33:18 (GMT) |
commit | c0641d6916775309d64944ca121cc736f0c8d7a1 (patch) | |
tree | 801e0b5d67d13ff4773c5906c9cb68d271a2be02 /src/node.h | |
parent | 09cc0496f7ce61e2bcbce80e067e0fac8054599a (diff) |
Reenabled PolySet caching. Pass shared_ptrs to polysets around to better manage memory
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ public: Used for human-readable output. */ virtual std::string name() const; /*! Should return a PolySet of the given geometry. Returns NULL if smth. goes wrong */ - virtual class PolySet *evaluate_polyset(class PolySetEvaluator *evaluator) const { return NULL; } + virtual class PolySet *evaluate_polyset(class PolySetEvaluator *) const { return NULL; } // FIXME: Make return value a reference const std::vector<AbstractNode*> &getChildren() const { |