fixing small issues

This commit is contained in:
Clément Le Bihan
2021-06-18 20:08:34 +02:00
parent 4669ff9280
commit 41e1becdeb
7 changed files with 10 additions and 12 deletions
+1 -6
View File
@@ -46,12 +46,7 @@ namespace BBM
std::vector<Node> Node::getChildNodes(void)
{
std::vector<Node> childs;
for (const auto &child : this->_childNodes) {
childs.emplace_back(child);
}
return childs;
return this->_childNodes;
}
void Node::setName(const std::string &name)