From 0226d95b200aaf5799df59c1dd9139c456d14933 Mon Sep 17 00:00:00 2001 From: cvarni Date: Mon, 7 Oct 2024 14:33:39 +0200 Subject: [PATCH] to string --- .../Acts/Seeding/detail/CylindricalSpacePointGrid.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp index 8cdbac27f72..95fa7186057 100644 --- a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp +++ b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp @@ -91,10 +91,10 @@ struct CylindricalSpacePointGridConfig { if (phiMin < -M_PI || phiMax > M_PI) { throw std::runtime_error( - "CylindricalSpacePointGridConfig: phiMin (" - << phiMin << ") and/or phiMax (" << phiMax - << ") are outside " - "the allowed phi range, defined as [-M_PI, M_PI]"); + "CylindricalSpacePointGridConfig: phiMin (" + std::to_string(phiMin) + + ") and/or phiMax (" + std::to_string(phiMax) + + ") are outside " + "the allowed phi range, defined as [-M_PI, M_PI]"); } if (phiMin > phiMax) { throw std::runtime_error(