]> git.stg.codes - stg.git/commitdiff
Видалено "мертвий" код із utime.h
authorMaxim Mamontov <faust@gts.dp.ua>
Wed, 9 Feb 2011 15:45:56 +0000 (17:45 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Wed, 9 Feb 2011 15:45:56 +0000 (17:45 +0200)
include/utime.h

index 4342edc674f567b68e1d390539d6e2ad79abc48b..20da4e432a7081b73c7cf131ed5e1c0642957f24 100644 (file)
@@ -108,8 +108,6 @@ struct UTIME: public timeval
 
     bool operator==(const UTIME & rhs) const
     {
-    //cout << tv_sec << "." << tv_usec << "  " << rhs.tv_sec << "." <<  rhs.tv_usec << endl;
-    //cout << (tv_sec == rhs.tv_sec) << " " << (tv_usec == rhs.tv_usec) << endl;
     return (tv_sec == rhs.tv_sec) && (tv_usec == rhs.tv_usec);
     }
 
@@ -117,9 +115,6 @@ struct UTIME: public timeval
     {
     // TODO optimize
     long long a, b;
-    /*a = tv_sec * 1000000 + tv_usec;
-    b = rhs.tv_sec * 1000000 + rhs.tv_usec;
-    return UTIME((a + b) / 1000000, (a + b) % 1000000);*/
     a = tv_sec + rhs.tv_sec;
     b = tv_usec + rhs.tv_usec;
     if (b > 1000000)
@@ -134,9 +129,6 @@ struct UTIME: public timeval
     {
     // TODO optimize
     long long a, b;
-    /*a = tv_sec * 1000000 + tv_usec;
-    b = rhs.tv_sec * 1000000 + rhs.tv_usec;
-    return UTIME((a - b) / 1000000, (a - b) % 1000000);*/
     a = tv_sec - rhs.tv_sec;
     b = tv_usec - rhs.tv_usec;
     if (a >= 0)
@@ -176,4 +168,3 @@ struct UTIME: public timeval
 
 
 #endif //UTIME_H
-