Skip to content
Snippets Groups Projects
Commit 1599e58a authored by Tobias Gröger's avatar Tobias Gröger
Browse files

Fix discarding result of synchRobot

synchronizeRobot has been marked as nodiscard which fails compilation.
parent d84bd4ef
No related branches found
No related tags found
1 merge request!155Fix discarding result of synchRobot
......@@ -132,7 +132,7 @@ namespace armarx::armem::server::human_memory
}();
// synchronize robot
virtualRobotReaderPlugin->get().synchronizeRobot(*robot, timestamp);
ARMARX_CHECK(virtualRobotReaderPlugin->get().synchronizeRobot(*robot, timestamp));
return robot;
}
......
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