Skip to content

Commit

Permalink
Small syntax fix for profiler macro calls (#2391)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlubo authored Aug 23, 2024
1 parent 2c08a56 commit 8ac8b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arbor/fvm_lowered_cell_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ fvm_integration_result fvm_lowered_cell_impl<Backend>::integrate(
// Add stimulus current contributions.
// NOTE: performed after dt, time_to calculation, in case we want to
// use mean current contributions as opposed to point sample.
PE(advance:integrate:stimuli)
PE(advance:integrate:stimuli);
state_->add_stimulus_current();
PL();

Expand Down Expand Up @@ -256,7 +256,7 @@ fvm_integration_result fvm_lowered_cell_impl<Backend>::integrate(
state_->test_thresholds();
PL();

PE(advance:integrate:post)
PE(advance:integrate:post);
if (post_events_) {
for (auto& m: mechanisms_) {
m->post_event();
Expand Down

0 comments on commit 8ac8b13

Please sign in to comment.