Avoid reserved identifiers

Change-Id: I48654972e66b9a298940d800b2e04018cfd5bef8
This commit is contained in:
Stephan Bergmann
2016-04-17 11:53:08 +02:00
parent 64d4e2a4c9
commit caf64a8c81

View File

@@ -66,10 +66,6 @@ const long LONG_MAX=2147483647;
//01-01-70 was a Thursday //01-01-70 was a Thursday
const long BASE_DOW = 4; const long BASE_DOW = 4;
long _lpdays[] = {-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365};
long _days[] = {-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364};
bool LtgGmTime(long rtime,LtTm& rtm) bool LtgGmTime(long rtime,LtTm& rtm)
{ {
if (rtime < 0) if (rtime < 0)
@@ -129,14 +125,18 @@ bool LtgGmTime(long rtime,LtTm& rtm)
//Determine months since January (0 - 11) and day of month (1 - 31) //Determine months since January (0 - 11) and day of month (1 - 31)
long* mdays; long const * mdays;
if ( islpyr ) if ( islpyr )
{ {
mdays = _lpdays; static long const lpdays[] =
{-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365};
mdays = lpdays;
} }
else else
{ {
mdays = _days; static long const days[] =
{-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364};
mdays = days;
} }
for ( tmptim = 1 ; mdays[tmptim] < rtm.tm_yday ; tmptim++ ) ; for ( tmptim = 1 ; mdays[tmptim] < rtm.tm_yday ; tmptim++ ) ;