FlightTasks: fix multiple comments

This commit is contained in:
MaEtUgR 2018-06-26 15:05:14 +02:00 committed by ChristophTobler
parent 675b6bbabc
commit 8d88fa2fca
3 changed files with 5 additions and 5 deletions

View File

@ -131,7 +131,7 @@ int FlightTasks::switchTask(FlightTaskIndex new_task_index)
return 0;
}
/* subscription failed */
// subscription failed
if (!_current_task.task->initializeSubscriptions(_subscription_array)) {
_current_task.task->~FlightTask();
_current_task.task = nullptr;
@ -141,7 +141,7 @@ int FlightTasks::switchTask(FlightTaskIndex new_task_index)
_subscription_array.forcedUpdate(); // make sure data is available for all new subscriptions
/* activation failed */
// activation failed
if (!_current_task.task->updateInitialize() || !_current_task.task->activate()) {
_current_task.task->~FlightTask();
_current_task.task = nullptr;
@ -154,7 +154,7 @@ int FlightTasks::switchTask(FlightTaskIndex new_task_index)
int FlightTasks::switchTask(int new_task_index)
{
/* make sure we are in range of the enumeration before casting */
// make sure we are in range of the enumeration before casting
if (static_cast<int>(FlightTaskIndex::None) <= new_task_index &&
static_cast<int>(FlightTaskIndex::Count) > new_task_index) {
return switchTask(FlightTaskIndex(new_task_index));

View File

@ -105,7 +105,7 @@ public:
/**
* Switch to the next task in the available list (for testing)
* @return true on success, false on error
* @return 1 on success, <0 on error
*/
int switchTask() { return switchTask(static_cast<int>(_current_task.index) + 1); }

View File

@ -81,7 +81,7 @@ protected:
private:
float _r = 0.f; /**< radius with which to orbit the target */
float _v = 0.f; /**< tangential velocity for orbiting in m/s */
float _v = 0.f; /**< clockwise tangential velocity for orbiting in m/s */
matrix::Vector2f _center; /**< local frame coordinates of the center point */
// TODO: create/use parameters for limits