From 1881429c272387dc54d5df04ccbb9cb253505347 Mon Sep 17 00:00:00 2001 From: Bruce Perry Date: Fri, 30 Aug 2024 11:48:07 -0600 Subject: [PATCH] \n instead of endl --- Src/Base/AMReX_ParmParse.H | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Src/Base/AMReX_ParmParse.H b/Src/Base/AMReX_ParmParse.H index 97bf928d36..a313abd502 100644 --- a/Src/Base/AMReX_ParmParse.H +++ b/Src/Base/AMReX_ParmParse.H @@ -1201,7 +1201,7 @@ public: ref = amrex::getEnum(s); } catch (...) { amrex::Print() << "amrex::ParmParse::query (input name: " - << this->prefixedName(name) << "):" << std::endl; + << this->prefixedName(name) << "):\n"; throw; } } @@ -1226,7 +1226,7 @@ public: ref = amrex::getEnum(s); } catch (...) { amrex::Print() << "amrex::ParmParse::get (input name: " - << this->prefixedName(name) << "):" << std::endl; + << this->prefixedName(name) << "):\n"; throw; } } @@ -1248,7 +1248,7 @@ public: ref[i] = amrex::getEnum(s[i]); } catch (...) { amrex::Print() << "amrex::ParmParse::queryarr (input name: " - << this->prefixedName(name) << "):" << std::endl; + << this->prefixedName(name) << "):\n"; throw; } } @@ -1272,7 +1272,7 @@ public: ref[i] = amrex::getEnum(s[i]); } catch (...) { amrex::Print() << "amrex::ParmParse::getarr (input name: " - << this->prefixedName(name) << "):" << std::endl; + << this->prefixedName(name) << "):\n"; throw; } }