Skip to content
Snippets Groups Projects
Unverified Commit 8ac8b139 authored by Jannik Luboeinski's avatar Jannik Luboeinski Committed by GitHub
Browse files

Small syntax fix for profiler macro calls (#2391)

parent 2c08a566
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......@@ -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();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment