From 0523a4eb7fff8fef88108829b63d21600310f768 Mon Sep 17 00:00:00 2001 From: Felix Riehn <felix@matilda> Date: Fri, 22 Jan 2021 13:08:41 +0000 Subject: [PATCH] clang --- corsika/detail/modules/HadronicElasticModel.inl | 2 +- tests/framework/testProcessSequence.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/corsika/detail/modules/HadronicElasticModel.inl b/corsika/detail/modules/HadronicElasticModel.inl index af2827eb0..bb5c16133 100644 --- a/corsika/detail/modules/HadronicElasticModel.inl +++ b/corsika/detail/modules/HadronicElasticModel.inl @@ -52,7 +52,7 @@ namespace corsika { avgCrossSection += getCrossSection(s) * fractions[i]; } - CORSIKA_LOG_DEBUG("avgCrossSection: {} mb" , avgCrossSection / 1_mb ); + CORSIKA_LOG_DEBUG("avgCrossSection: {} mb", avgCrossSection / 1_mb); return avgCrossSection; }(); diff --git a/tests/framework/testProcessSequence.cpp b/tests/framework/testProcessSequence.cpp index e079093ff..e4af3534d 100644 --- a/tests/framework/testProcessSequence.cpp +++ b/tests/framework/testProcessSequence.cpp @@ -214,11 +214,11 @@ public: inline void doInteraction(TView& v) const { checkInteract |= 4; for (int i = 0; i < nData; ++i) v.parent().data_[i] *= 1.01; - CORSIKA_LOG_DEBUG("Process3::doInteraction" ); + CORSIKA_LOG_DEBUG("Process3::doInteraction"); } template <typename Particle> GrammageType getInteractionLength(Particle&) const { - CORSIKA_LOG_DEBUG("Process3::GetInteractionLength" ); + CORSIKA_LOG_DEBUG("Process3::GetInteractionLength"); return 30_g / (1_cm * 1_cm); } -- GitLab