Changeset 15268 for trunk/Mars


Ignore:
Timestamp:
04/06/13 13:02:10 (11 years ago)
Author:
tbretz
Message:
Added the misisng namespace for endl in case or MARS
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/PixelMap.h

    r15218 r15268  
    256256            if (entry.hv_channel+32*entry.hv_board>=416)
    257257            {
    258                 gLog << err << "Invalid board/channel read from " << fname << "." << endl;
     258                gLog << err << "Invalid board/channel read from " << fname << "." << std::endl;
    259259                return false;
    260260            }
     
    277277        if (l!=416)
    278278        {
    279             gLog << err  << "Number of lines read from " << fname << " does not match 416." << endl;
     279            gLog << err  << "Number of lines read from " << fname << " does not match 416." << std::endl;
    280280            return false;
    281281        }
     
    283283        if (size()!=416)
    284284        {
    285             gLog << "Number of entries read from " << fname << " does not match 416." << endl;
     285            gLog << "Number of entries read from " << fname << " does not match 416." << std::endl;
    286286            return false;
    287287        }
Note: See TracChangeset for help on using the changeset viewer.