Skip to content
Snippets Groups Projects
Commit 5060014e authored by Mirko Wächter's avatar Mirko Wächter
Browse files

fixed compile error in ft obs

parent b01fcfb4
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ void ForceTorqueObserver::onInitObserver()
offeringTopic("DebugDrawerUpdates");
auto sensorRobotNodeSplit = armarx::Split(getProperty<std::string>("SensorRobotNodeMapping").getValue(), ",");
for (auto& elem : sensorRobotNodeSplit)
for (auto & elem : sensorRobotNodeSplit)
{
boost::trim(elem);
auto split = armarx::Split(elem, ":");
......@@ -125,7 +125,7 @@ void ForceTorqueObserver::visualizerFunction()
ScopedLock lock(dataMutex);
std::set<std::string> frameAlreadyReported;
for (auto& channel : channels)
for (auto & channel : channels)
{
try
{
......@@ -322,7 +322,7 @@ void armarx::ForceTorqueObserver::reportSensorValues(const std::string& sensorNo
id = new DataFieldIdentifier(getName(), channelName, "forces");
}
offerValue(sensorNodeName, id->datafieldName, forces, id, time);
offerValue(sensorNodeName, id->datafieldName, forces, id);
}
if (torques)
......@@ -336,7 +336,7 @@ void armarx::ForceTorqueObserver::reportSensorValues(const std::string& sensorNo
id = new DataFieldIdentifier(getName(), channelName, "torques");
}
offerValue(sensorNodeName, id->datafieldName, torques, id, time);
offerValue(sensorNodeName, id->datafieldName, torques, id);
}
updateChannel(id->channelName);
......
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