summaryrefslogtreecommitdiff
path: root/datetime.h
diff options
context:
space:
mode:
Diffstat (limited to 'datetime.h')
-rw-r--r--datetime.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/datetime.h b/datetime.h
index 8ca5f424..9f85d3f2 100644
--- a/datetime.h
+++ b/datetime.h
@@ -96,7 +96,7 @@ class date_t
operator bool() const {
return when != 0;
}
- operator std::time_t() const {
+ operator std::time_t() {
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) {