Skip to content
Snippets Groups Projects
Commit 638d566b authored by Luca Erbetta's avatar Luca Erbetta :rocket:
Browse files

[FMM] Fix unused warning

parent 41510b3f
Branches
No related tags found
No related merge requests found
...@@ -56,8 +56,9 @@ void FlightModeManager::logState(FMMState current_state) ...@@ -56,8 +56,9 @@ void FlightModeManager::logState(FMMState current_state)
logger.log(status); logger.log(status);
} }
State FlightModeManager::state_initialization(const Event& e) State FlightModeManager::state_initialization(const Event& ev)
{ {
(void)ev; // Avoid unused warning
return transition(&FlightModeManager::state_startup); return transition(&FlightModeManager::state_startup);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment