MSVC fix.

This commit is contained in:
ehofman 2005-01-28 15:23:26 +00:00
parent 27af79684f
commit 207c7ab1e0

View File

@ -156,7 +156,11 @@ void SGMetar::useCurrentDate()
{
struct tm now;
time_t now_sec = time(0);
#ifdef _MSC_VER
now = *gmtime(&now_sec);
#else
gmtime_r(&now_sec, &now);
#endif
_year = now.tm_year + 1900;
_month = now.tm_mon + 1;
}