Skip to content

Commit

Permalink
\n instead of endl
Browse files Browse the repository at this point in the history
  • Loading branch information
baperry2 committed Aug 30, 2024
1 parent fc3bac6 commit 1881429
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Src/Base/AMReX_ParmParse.H
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ public:
ref = amrex::getEnum<T>(s);
} catch (...) {
amrex::Print() << "amrex::ParmParse::query (input name: "
<< this->prefixedName(name) << "):" << std::endl;
<< this->prefixedName(name) << "):\n";
throw;
}
}
Expand All @@ -1226,7 +1226,7 @@ public:
ref = amrex::getEnum<T>(s);
} catch (...) {
amrex::Print() << "amrex::ParmParse::get (input name: "
<< this->prefixedName(name) << "):" << std::endl;
<< this->prefixedName(name) << "):\n";
throw;
}
}
Expand All @@ -1248,7 +1248,7 @@ public:
ref[i] = amrex::getEnum<T>(s[i]);
} catch (...) {
amrex::Print() << "amrex::ParmParse::queryarr (input name: "
<< this->prefixedName(name) << "):" << std::endl;
<< this->prefixedName(name) << "):\n";
throw;
}
}
Expand All @@ -1272,7 +1272,7 @@ public:
ref[i] = amrex::getEnum<T>(s[i]);
} catch (...) {
amrex::Print() << "amrex::ParmParse::getarr (input name: "
<< this->prefixedName(name) << "):" << std::endl;
<< this->prefixedName(name) << "):\n";
throw;
}
}
Expand Down

0 comments on commit 1881429

Please sign in to comment.