Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 23, 2007, 7:19:07 PM (18 years ago)
Author:
landauf
Message:

changed \n to std::endl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/core/Identifier.cc

    r670 r677  
    6868    void Identifier::initialize(const IdentifierList* parents)
    6969    {
    70         COUT(4) << "*** Initialize " << this->name_ << "-Singleton.\n";
     70        COUT(4) << "*** Initialize " << this->name_ << "-Singleton." << std::endl;
    7171        this->bCreatedOneObject_ = true;
    7272
     
    9797        {
    9898            // Abstract classes don't have a factory and therefore can't create new objects
    99             COUT(1) << "Error: Cannot create an object of type '" << this->name_ << "'. Class is abstract.\n";
    100             COUT(1) << "Aborting...";
     99            COUT(1) << "Error: Cannot create an object of type '" << this->name_ << "'. Class is abstract." << std::endl;
     100            COUT(1) << "Aborting..." << std::endl;
    101101            abort();
    102102            return NULL;
Note: See TracChangeset for help on using the changeset viewer.