Commit bf89851b authored by Mariano Lizarraga's avatar Mariano Lizarraga

Fixed some missing curly braces that were removed by the conflict resolution tool

parent 710ca1a9
...@@ -357,7 +357,7 @@ protected slots: ...@@ -357,7 +357,7 @@ protected slots:
void receiveMessageNamedValue(const mavlink_message_t& message); void receiveMessageNamedValue(const mavlink_message_t& message);
private: private:
unsigned int mode; ///< The current mode of the MAV // unsigned int mode; ///< The current mode of the MAV
}; };
......
...@@ -192,10 +192,11 @@ void WaypointList::add() ...@@ -192,10 +192,11 @@ void WaypointList::add()
uas->getWaypointManager()->addWaypoint(wp); uas->getWaypointManager()->addWaypoint(wp);
} }
}
} }
void WaypointList::addCurrentPositonWaypoint() void WaypointList::addCurrentPositonWaypoint(){
{
/* TODO: implement with new waypoint structure /* TODO: implement with new waypoint structure
if (uas) if (uas)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment