Skip to content
Snippets Groups Projects
Commit f14a0e8a authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm "this->"

parent dec60c44
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ ParameterPool* INode::createParameterTree() const { ...@@ -116,7 +116,7 @@ ParameterPool* INode::createParameterTree() const {
std::unique_ptr<ParameterPool> result(new ParameterPool); std::unique_ptr<ParameterPool> result(new ParameterPool);
for (const INode* child : progeny()) { for (const INode* child : progeny()) {
const std::string path = NodeUtils::nodePath(child, this->parent()) + "/"; const std::string path = NodeUtils::nodePath(child, parent()) + "/";
child->parameterPool()->copyToExternalPool(path, result.get()); child->parameterPool()->copyToExternalPool(path, result.get());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment