From 93a454d365d559b3584fdcdcd354a804b35b6432 Mon Sep 17 00:00:00 2001 From: Alexis Maloizel Date: Mon, 15 Apr 2024 10:13:20 +0200 Subject: [PATCH] restored old fix on [[maybe_unused]] variable --- RecFCCeeCalorimeter/src/components/AugmentClustersFCCee.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RecFCCeeCalorimeter/src/components/AugmentClustersFCCee.cpp b/RecFCCeeCalorimeter/src/components/AugmentClustersFCCee.cpp index 46c908e2..7f588cb4 100644 --- a/RecFCCeeCalorimeter/src/components/AugmentClustersFCCee.cpp +++ b/RecFCCeeCalorimeter/src/components/AugmentClustersFCCee.cpp @@ -89,9 +89,9 @@ StatusCode AugmentClustersFCCee::finalize() return Gaudi::Algorithm::finalize(); } -StatusCode AugmentClustersFCCee::execute(const EventContext &evtCtx) const +StatusCode AugmentClustersFCCee::execute([[maybe_unused]] const EventContext &evtCtx) const { - (void)evtCtx; // event context not used + // get the input collection with clusters const edm4hep::ClusterCollection *inClusters = m_inClusters.get();