Bug Fix - #404 Compile error on current archlinux

- Applied patch sent by Johannes Schlatow to fix build on Arch Linux.
This commit is contained in:
Paul Beckingham 2010-05-09 18:30:12 -04:00
parent 38d82f6564
commit 89267846ca
3 changed files with 4 additions and 1 deletions

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);
}
////////////////////////////////////////////////////////////////////////////////