diff --git a/GenericIO.cxx b/GenericIO.cxx index eb1fb18314881dc6c996990d1e6c1a486453ea74..b539017dd290b7333e65bd42eee412cae91a28ea 100644 --- a/GenericIO.cxx +++ b/GenericIO.cxx @@ -734,9 +734,9 @@ nocomp: if (Rank == 0) { double Rate = ((double) FileSize) / MaxTotalTime / (1024.*1024.); - cout << "Wrote " << Vars.size() << " variables to " << FileName << - " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " << - Rate << " MB/s" << endl; + std::cout << "Wrote " << Vars.size() << " variables to " << FileName << + " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " << + Rate << " MB/s" << std::endl; } MPI_Comm_free(&SplitComm); @@ -1331,9 +1331,9 @@ void GenericIO::readData(int EffRank, bool PrintStats, bool CollStats) { if (Rank == 0 && PrintStats) { double Rate = ((double) AllTotalReadSize) / MaxTotalTime / (1024.*1024.); - cout << "Read " << Vars.size() << " variables from " << FileName << - " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " << - Rate << " MB/s [excluding header read]" << endl; + std::cout << "Read " << Vars.size() << " variables from " << FileName << + " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " << + Rate << " MB/s [excluding header read]" << std::endl; } }