Changeset d6628a6 for GenericIO.cxx


Ignore:
Timestamp:
04/02/18 11:01:05 (6 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master, pympi
Children:
6461f57
Parents:
56b997e
git-author:
Hal Finkel <hfinkel@…> (04/02/18 11:01:05)
git-committer:
Hal Finkel <hfinkel@…> (04/02/18 11:01:05)
Message:

Fully qualify uses of cout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GenericIO.cxx

    r56b997e rd6628a6  
    735735  if (Rank == 0) { 
    736736    double Rate = ((double) FileSize) / MaxTotalTime / (1024.*1024.); 
    737     cout << "Wrote " << Vars.size() << " variables to " << FileName << 
    738             " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " << 
    739             Rate << " MB/s" << endl; 
     737    std::cout << "Wrote " << Vars.size() << " variables to " << FileName << 
     738                  " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " << 
     739                  Rate << " MB/s" << std::endl; 
    740740  } 
    741741 
     
    13321332  if (Rank == 0 && PrintStats) { 
    13331333    double Rate = ((double) AllTotalReadSize) / MaxTotalTime / (1024.*1024.); 
    1334     cout << "Read " << Vars.size() << " variables from " << FileName << 
    1335             " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " << 
    1336             Rate << " MB/s [excluding header read]" << endl; 
     1334    std::cout << "Read " << Vars.size() << " variables from " << FileName << 
     1335                 " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " << 
     1336                 Rate << " MB/s [excluding header read]" << std::endl; 
    13371337  } 
    13381338} 
Note: See TracChangeset for help on using the changeset viewer.