This commit is contained in:
gabime
2014-03-05 23:07:35 +02:00
7 changed files with 23 additions and 24 deletions

View File

@@ -26,6 +26,8 @@ inline std::tm localtime()
}
inline bool operator==(const std::tm& tm1, const std::tm& tm2)
{
return (tm1.tm_sec == tm2.tm_sec &&
@@ -45,3 +47,6 @@ inline bool operator!=(const std::tm& tm1, const std::tm& tm2)
}
}
}