- Removed unused ::leapYear function.
This commit is contained in:
Paul Beckingham 2014-07-06 00:10:48 -04:00
parent 23e3499244
commit d5919d9608

View file

@ -63,15 +63,6 @@ static bool isDay (const std::string& name, int& i)
return false;
}
////////////////////////////////////////////////////////////////////////////////
/**/
static bool leapYear (int year)
{
return ((!(year % 4)) && (year % 100)) ||
(!(year % 400));
}
/**/
////////////////////////////////////////////////////////////////////////////////
static void easter (struct tm* t)
{