mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-26 15:39:03 +08:00
Removed dead code from os.h
This commit is contained in:
parent
98f9cb8c1f
commit
cbf66ac653
@ -107,16 +107,16 @@ inline std::tm gmtime() noexcept
|
|||||||
std::time_t now_t = time(nullptr);
|
std::time_t now_t = time(nullptr);
|
||||||
return gmtime(now_t);
|
return gmtime(now_t);
|
||||||
}
|
}
|
||||||
inline bool operator==(const std::tm &tm1, const std::tm &tm2) noexcept
|
//inline bool operator==(const std::tm &tm1, const std::tm &tm2) noexcept
|
||||||
{
|
//{
|
||||||
return (tm1.tm_sec == tm2.tm_sec && tm1.tm_min == tm2.tm_min && tm1.tm_hour == tm2.tm_hour && tm1.tm_mday == tm2.tm_mday &&
|
// return (tm1.tm_sec == tm2.tm_sec && tm1.tm_min == tm2.tm_min && tm1.tm_hour == tm2.tm_hour && tm1.tm_mday == tm2.tm_mday &&
|
||||||
tm1.tm_mon == tm2.tm_mon && tm1.tm_year == tm2.tm_year && tm1.tm_isdst == tm2.tm_isdst);
|
// tm1.tm_mon == tm2.tm_mon && tm1.tm_year == tm2.tm_year && tm1.tm_isdst == tm2.tm_isdst);
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
inline bool operator!=(const std::tm &tm1, const std::tm &tm2) noexcept
|
//inline bool operator!=(const std::tm &tm1, const std::tm &tm2) noexcept
|
||||||
{
|
//{
|
||||||
return !(tm1 == tm2);
|
// return !(tm1 == tm2);
|
||||||
}
|
//}
|
||||||
|
|
||||||
// eol definition
|
// eol definition
|
||||||
#if !defined(SPDLOG_EOL)
|
#if !defined(SPDLOG_EOL)
|
||||||
|
Loading…
Reference in New Issue
Block a user