fix windows build

pull/432/head
Thomas Fussell 2020-02-08 12:09:22 -05:00
parent 53b2853ae3
commit 5a2498c229
No known key found for this signature in database
GPG Key ID: B0BA09F5229A9D10
1 changed files with 4 additions and 0 deletions

View File

@ -126,7 +126,11 @@ date date::today()
int date::weekday() const
{
#ifdef __APPLE__
std::tm tm{0, 0, 0, day, month - 1, year - 1900, 0, 0, 0, 0, nullptr};
#else
std::tm tm{0, 0, 0, day, month - 1, year - 1900, 0, 0, 0};
#endif
std::time_t time = std::mktime(&tm);
return safe_localtime(time).tm_wday;