]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timedelta.h
Semaphore is now win32-compatible, I hope
[libs/core.git] / source / time / timedelta.h
index 694136ec8e78477a0acbcb82227c607824491b67..96dc7604f48e3b8ccca9ace1eeeae8cdc7fcff99 100644 (file)
@@ -37,11 +37,13 @@ public:
        */
        int64_t raw() const { return usec; }
 
+#ifndef WIN32
        /**
        Fills in a timespec struct.  To get a meaningful scalar value from the
        TimeDelta, divide with one of the values in units.h.
        */
        void fill_timespec(timespec &ts) const { ts.tv_sec=usec/1000000; ts.tv_nsec=(usec%1000000)*1000; }
+#endif
 
        TimeDelta operator+(const TimeDelta &t) const  { return TimeDelta(usec+t.usec); }
        TimeDelta &operator+=(const TimeDelta &t)      { usec+=t.usec; return *this; }