Skip to content
Snippets Groups Projects
Commit 6cf42b5f authored by Fabian Tërnava's avatar Fabian Tërnava
Browse files

fixed error when visiting root of object

parent ceab85c1
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ namespace armarx::armem::server
void visitDictOnEnter(const aron::data::VariantPtr& n) override
{
ARMARX_CHECK_NOT_NULL(n);
const std::string key = n->getPath().getLastElement();
const std::string key = n->getPath().size() > 0 ? n->getPath().getLastElement() : ""; // check if root of object
visitEnter(key, "dict", n->childrenSize());
}
void visitDictOnExit(const aron::data::VariantPtr&) override
......
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