Fix aa5a8fe28: [MinGW] Wrong define tested (WIN32 vs _WIN32)

pull/332/head
glx22 3 years ago committed by Loïc Guilloux
parent d485b50813
commit c2db408d5d

@ -17,7 +17,7 @@ struct LocalTimeToStruct {
static inline std::tm ToTimeStruct(std::time_t time_since_epoch)
{
std::tm time = {};
#ifdef WIN32
#ifdef _WIN32
/* Windows has swapped the parameters around for localtime_s. */
localtime_s(&time, &time_since_epoch);
#else
@ -32,7 +32,7 @@ struct UTCTimeToStruct {
static inline std::tm ToTimeStruct(std::time_t time_since_epoch)
{
std::tm time = {};
#ifdef WIN32
#ifdef _WIN32
/* Windows has swapped the parameters around for gmtime_s. */
gmtime_s(&time, &time_since_epoch);
#else

Loading…
Cancel
Save