Skip to content

Commit

Permalink
mission: fix warning about missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes authored and JonasVautherin committed May 21, 2018
1 parent ddfb53d commit bdff78f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/mission/mission_item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ std::ostream &operator<<(std::ostream &str, MissionItem::CameraAction const &cam
return str << "CameraAction::STOP_VIDEO";
case MissionItem::CameraAction::NONE:
return str << "CameraAction::NONE";
default:
return str << "Unknown";
}
}

Expand Down

0 comments on commit bdff78f

Please sign in to comment.