From 8ac8b139654f532c1fbc9ea47b9d10efdfa7fb8f Mon Sep 17 00:00:00 2001
From: Jannik Luboeinski <33398515+jlubo@users.noreply.github.com>
Date: Fri, 23 Aug 2024 18:12:11 +0200
Subject: [PATCH] Small syntax fix for profiler macro calls (#2391)

---
 arbor/fvm_lowered_cell_impl.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arbor/fvm_lowered_cell_impl.hpp b/arbor/fvm_lowered_cell_impl.hpp
index 94716b21..316300ab 100644
--- a/arbor/fvm_lowered_cell_impl.hpp
+++ b/arbor/fvm_lowered_cell_impl.hpp
@@ -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();
-- 
GitLab