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

Fix usages of get_keys

parent 4ee508df
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ namespace armarx::armem::server::robot_state::localization
RobotFramePoseMap frames;
const auto knownRobots = simox::alg::get_keys(*segment);
const auto knownRobots = simox::alg::get_keys(segment->container());
for (const auto& robotName : knownRobots)
{
TransformQuery query{.header{.parentFrame = GlobalFrame,
......@@ -106,7 +106,7 @@ namespace armarx::armem::server::robot_state::localization
RobotPoseMap robotGlobalPoses;
const std::vector<std::string> knownRobots = simox::alg::get_keys(*segment);
const std::vector<std::string> knownRobots = simox::alg::get_keys(segment->container());
for (const std::string& robotName : knownRobots)
{
......
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