From d57c25184c60bc8505868a59a4f6401f6d3c3600 Mon Sep 17 00:00:00 2001 From: "s.zharko@gsi.de" <s.zharko@gsi.de> Date: Tue, 25 Mar 2025 14:43:10 +0100 Subject: [PATCH] KF: warning fixes --- algo/kf/core/geo/KfFieldRegion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algo/kf/core/geo/KfFieldRegion.h b/algo/kf/core/geo/KfFieldRegion.h index 299aa5fb85..248372602f 100644 --- a/algo/kf/core/geo/KfFieldRegion.h +++ b/algo/kf/core/geo/KfFieldRegion.h @@ -234,8 +234,8 @@ namespace cbm::algo::kf std::string ToString(int indentLevel = 0, int verbose = 1) const; protected: - CoeffArray_t fCoeff{{T(0.)}}; ///< Approximation coefficients - T fZfirst{Literal_t<T>()}; ///< Reference z-coordinate of the field region + CoeffArray_t fCoeff{}; ///< Approximation coefficients + T fZfirst{Literal_t<T>()}; ///< Reference z-coordinate of the field region private: /// Serialization function -- GitLab