GH #346: Make Poco::Data::Date and Poco::Data::Time compare functions const.

This commit is contained in:
Alex Fabijanic
2014-04-29 22:39:30 -05:00
parent 6ec4986fb1
commit 794ee36b3d
5 changed files with 17 additions and 16 deletions

View File

@@ -89,7 +89,7 @@ void Time::assign(int hour, int minute, int second)
}
bool Time::operator < (const Time& time)
bool Time::operator < (const Time& time) const
{
int hour = time.hour();