aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOBasic
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetIOBasic')
-rw-r--r--Carpet/CarpetIOBasic/src/iobasic.cc14
1 files changed, 4 insertions, 10 deletions
diff --git a/Carpet/CarpetIOBasic/src/iobasic.cc b/Carpet/CarpetIOBasic/src/iobasic.cc
index 11c620604..acc850c4e 100644
--- a/Carpet/CarpetIOBasic/src/iobasic.cc
+++ b/Carpet/CarpetIOBasic/src/iobasic.cc
@@ -188,12 +188,8 @@ namespace CarpetIOBasic {
if (TimeToOutput (cctkGH)) {
- int oldprec;
- ios_base::fmtflags oldflags;
- if (CCTK_MyProc(cctkGH) == 0) {
- oldprec = cout.precision();
- oldflags = cout.flags();
- }
+ int const oldprec = cout.precision();
+ ios_base::fmtflags const oldflags = cout.flags();
if (output_count ++ % outHeader_every == 0 && outHeader_every != -1) {
// Print the header
@@ -225,10 +221,8 @@ namespace CarpetIOBasic {
last_output = cctk_iteration;
- if (CCTK_MyProc(cctkGH) == 0) {
- cout.precision (oldprec);
- cout.setf (oldflags);
- }
+ cout.precision (oldprec);
+ cout.setf (oldflags);
} // if time to output