diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-06 03:01:55 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-06 03:01:55 (GMT) |
commit | a64d8077d346eee962d00cca9e0f3eae076a6d58 (patch) | |
tree | 7498462cd6f6a2b8fdd681a475d5d56ae99bd33d /src/node.cc | |
parent | 9d8c1f1a7279a9d476728bd5b9d46f27cf77bfda (diff) |
output intersection() instead of intersection_for() for evaluated nodes
Diffstat (limited to 'src/node.cc')
-rw-r--r-- | src/node.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/node.cc b/src/node.cc index 12a7ca4..a4d70be 100644 --- a/src/node.cc +++ b/src/node.cc @@ -78,7 +78,9 @@ std::string AbstractIntersectionNode::toString() const std::string AbstractIntersectionNode::name() const { - return "intersection_for"; + // We write intersection here since the module will have to be evaluated + // before we get here and it will not longer retain the intersection_for parameters + return "intersection"; } void AbstractNode::progress_prepare() |