From 671ccd16d4e893b2dd83f238d4f37ee1b545b43c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 9 Apr 2008 23:17:21 -0400 Subject: Added a class operator hack to allow building on FreeBSD 8. --- datetime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'datetime.h') diff --git a/datetime.h b/datetime.h index 9f85d3f2..8ca5f424 100644 --- a/datetime.h +++ b/datetime.h @@ -96,7 +96,7 @@ class date_t operator bool() const { return when != 0; } - operator std::time_t() { + operator std::time_t() const { return when; } operator std::string() const { @@ -138,7 +138,7 @@ class date_t inline long operator-(const date_t& left, const date_t& right) { date_t temp(left); temp -= right; - return (long)temp; + return long(temp); } inline date_t operator+(const date_t& left, const long days) { -- cgit v1.2.3