- Refixed #404 that got lost in a recent merge.
This commit is contained in:
Paul Beckingham 2010-05-11 23:52:12 -04:00
parent 8553811889
commit a31e9a5a3c

View file

@ -792,7 +792,7 @@ bool Date::sameYear (const Date& rhs)
////////////////////////////////////////////////////////////////////////////////
Date Date::operator+ (const int delta)
{
return Date::Date (mT + delta);
return Date (mT + delta);
}
////////////////////////////////////////////////////////////////////////////////