Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-jerred committed Dec 25, 2024
1 parent 7a7b694 commit cdcc362
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/flight_system/modules/extension/extension_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,11 @@ void ExtensionModule::stateMachine(ExtContainer &ext) {
break;
case ExtAction::ERROR_STOP:
giraffe_assert(false);
stopState(ext);
break;
default:
giraffe_assert(false);
stopState(ext);
break;
}
}
Expand Down Expand Up @@ -475,12 +477,12 @@ void ExtensionModule::errorStartState(ExtContainer &ext) {

void ExtensionModule::errorRestartState(ExtContainer &ext) {
(void)ext;
// giraffe_assert(false); // not implemented yet
giraffe_assert(false); // not implemented yet
}

void ExtensionModule::errorDisableState(ExtContainer &ext) {
(void)ext;
// giraffe_assert(false); // not implemented yet
giraffe_assert(false); // not implemented yet
}

} // namespace modules

0 comments on commit cdcc362

Please sign in to comment.