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 committed Dec 1, 2022
1 parent 3dd19ba commit 79fd8d5
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 79fd8d5

Please sign in to comment.