Skip to content

Commit

Permalink
FSMA: Fixed inline qualifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed Nov 11, 2024
1 parent 805959c commit d94f1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inet/common/FSMA.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void Fsm::insertDelayedAction(std::function<void()> action)
delayedActions.push_back(action);
}

inline void Fsm::executeDelayedActions()
void Fsm::executeDelayedActions()
{
auto actions = delayedActions;
delayedActions.clear();
Expand Down

0 comments on commit d94f1a1

Please sign in to comment.