Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3305


Ignore:
Timestamp:
Jul 18, 2009, 6:24:38 PM (15 years ago)
Author:
rgrieder
Message:

Removed annoying warning on Windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/util/Sleep.cc

    r3214 r3305  
    4848    void usleep(unsigned long microseconds)
    4949    {
    50         if (microseconds < 1000)
    51             COUT(2) << "Warning: Windows cannot sleep less than 1ms, ignoring" << std::endl;
     50        //if (microseconds < 1000)
     51        //    COUT(2) << "Warning: Windows cannot sleep less than 1ms, ignoring" << std::endl;
    5252        Sleep(microseconds / 1000);
    5353    }
Note: See TracChangeset for help on using the changeset viewer.