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

removed c++11 braces

parent e9665207
No related branches found
No related tags found
No related merge requests found
......@@ -373,9 +373,9 @@ namespace VirtualRobot
virtual std::vector<SensorPtr> getSensors();
template<class SensorType>
std::vector<boost::shared_ptr<SensorType>> getSensors()
std::vector<boost::shared_ptr<SensorType> > getSensors()
{
std::vector<boost::shared_ptr<SensorType>> result;
std::vector<boost::shared_ptr<SensorType> > result;
std::vector<SensorPtr> sensors = getSensors();
result.reserve(sensors.size());
for(SensorPtr& sensor:sensors)
......
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