Skip to content
Snippets Groups Projects
Commit bb4cd567 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix missing initializer for new member

parent 7a69d0c5
No related branches found
No related tags found
No related merge requests found
......@@ -209,10 +209,15 @@ namespace armarx
{"PriorKnowledgeData"}, obj.getFilename()),
obj.getFilename())},
.instance = "", // TODO(fabian.reister):
.config = {.timestamp = timestamp,
.globalPose = Eigen::Affine3f(obj.getRootNode()->getGlobalPose()),
.jointMap = obj.getJointValues()},
.timestamp = timestamp};
.config =
{
.timestamp = timestamp,
.globalPose = Eigen::Affine3f(obj.getRootNode()->getGlobalPose()),
.jointMap = obj.getJointValues(),
.proprioception = std::nullopt,
},
.timestamp = timestamp,
};
}
void
......
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