Skip to content
Snippets Groups Projects
Commit 12d29fd0 authored by TSC21's avatar TSC21 Committed by Julian Oes
Browse files

navigator: mission_feasibility_checker: remove lazy comparison

parent c9c86ae2
No related branches found
No related tags found
No related merge requests found
......@@ -106,11 +106,12 @@ MissionFeasibilityChecker::checkRotarywing(const mission_s &mission, float home_
bool
MissionFeasibilityChecker::checkFixedwing(const mission_s &mission, float home_alt, bool land_start_req)
{
/*
* Perform checks and issue feedback to the user for all checks
* Mission is only marked as feasible if all checks return true
*/
return (checkTakeoff(mission, home_alt) && checkFixedWingLanding(mission, land_start_req));
/* Perform checks and issue feedback to the user for all checks */
bool resTakeoff = checkTakeoff(mission, home_alt);
bool resLanding = checkFixedWingLanding(mission, land_start_req);
/* Mission is only marked as feasible if all checks return true */
return (resTakeoff && resLanding);
}
bool
......
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