Skip to content

Commit

Permalink
Fix undefined symbol (#3538)
Browse files Browse the repository at this point in the history
  • Loading branch information
twose authored Aug 4, 2020
1 parent f755f20 commit edf9686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reactor/base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ bool Reactor::if_exit() {
return true;
}

void swReactor_activate_future_task(swReactor *reactor) {
reactor->onBegin = reactor_begin;
void Reactor::activate_future_task() {
onBegin = reactor_begin;
}

static void reactor_begin(swReactor *reactor) {
Expand Down

0 comments on commit edf9686

Please sign in to comment.