From 9d6798b9c521d151a470d696ab2c33d838a7af86 Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Wed, 21 Jan 2026 09:36:17 +0100 Subject: [PATCH] removed comment --- include/aare/ClusterFinder.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aare/ClusterFinder.hpp b/include/aare/ClusterFinder.hpp index 26ae000..7d059ff 100644 --- a/include/aare/ClusterFinder.hpp +++ b/include/aare/ClusterFinder.hpp @@ -152,9 +152,9 @@ class ClusterFinder { // If the cluster type is an integral type, and // the pedestal is a floating point type then we // need to round the value before storing it - if constexpr (std::is_integral_v /*&& + if constexpr (std::is_integral_v && std::is_floating_point_v< - PEDESTAL_TYPE>*/) { + PEDESTAL_TYPE>) { auto tmp = std::lround( frame(iy + ir, ix + ic) - m_pedestal.mean(iy + ir, ix + ic));