Skip to content

Commit

Permalink
#1983: runnable: adjust begin/end to start/finish
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander authored and cz4rs committed Mar 27, 2023
1 parent 76014fc commit 8646339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vt/runnable/runnable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ void RunnableNew::setupHandlerElement(
}

void RunnableNew::runLambda(ActionType action) {
begin();
start();
action();
end();
finish();
}

void RunnableNew::run() {
Expand Down

0 comments on commit 8646339

Please sign in to comment.