mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
Merge branch 'master' of https://github.com/gabime/spdlog
This commit is contained in:
commit
2e46ba9f98
@ -166,8 +166,13 @@ inline int utc_minutes_offset(const std::tm& tm = details::os::localtime())
|
|||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
(void)tm; // avoid unused param warning
|
(void)tm; // avoid unused param warning
|
||||||
|
#if _WIN32_WINNT < _WIN32_WINNT_WS08
|
||||||
|
TIME_ZONE_INFORMATION tzinfo;
|
||||||
|
auto rv = GetTimeZoneInformation(&tzinfo);
|
||||||
|
#else
|
||||||
DYNAMIC_TIME_ZONE_INFORMATION tzinfo;
|
DYNAMIC_TIME_ZONE_INFORMATION tzinfo;
|
||||||
auto rv = GetDynamicTimeZoneInformation(&tzinfo);
|
auto rv = GetDynamicTimeZoneInformation(&tzinfo);
|
||||||
|
#endif
|
||||||
if (!rv)
|
if (!rv)
|
||||||
return -1;
|
return -1;
|
||||||
return -1 * (tzinfo.Bias + tzinfo.DaylightBias);
|
return -1 * (tzinfo.Bias + tzinfo.DaylightBias);
|
||||||
|
Loading…
Reference in New Issue
Block a user