Base: fix a possible naming clash with 'timezone' with Py3.6 on Windows

This commit is contained in:
wmayer
2022-04-28 16:05:30 +02:00
parent 126d205cf4
commit 8427d446e0

View File

@@ -101,10 +101,7 @@ float TimeInfo::diffTimeF(const TimeInfo &timeStart,const TimeInfo &timeEnd )
TimeInfo TimeInfo::null()
{
TimeInfo ti;
ti.timebuffer.time = 0;
ti.timebuffer.millitm = 0;
ti.timebuffer.timezone = 0;
ti.timebuffer.dstflag = 0;
ti.timebuffer = {};
return ti;
}