diff options
Diffstat (limited to 'src/csgops.cc')
-rw-r--r-- | src/csgops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csgops.cc b/src/csgops.cc index 53e9ed6..334db16 100644 --- a/src/csgops.cc +++ b/src/csgops.cc @@ -47,7 +47,7 @@ AbstractNode *CsgModule::evaluate(const Context*, const ModuleInstantiation *ins foreach (ModuleInstantiation *v, inst->children) { AbstractNode *n = v->evaluate(inst->ctx); if (n != NULL) - node->children.append(n); + node->children.push_back(n); } return node; } |