summaryrefslogtreecommitdiff
path: root/src/local_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/local_time.h')
-rw-r--r--src/local_time.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/local_time.h b/src/local_time.h
index ad55ad5a..20658eb4 100644
--- a/src/local_time.h
+++ b/src/local_time.h
@@ -84,8 +84,11 @@ private:
int _second; ///< second number of the minute (0-59)
int _millisecond; ///< millisecond number of the second (0-999)
- int _tz_hour; ///< hours by which this time is offset from UTC
- int _tz_minute; ///< minutes by which this time is offset from UTC
+ int _tz_hour; ///< hours by which this time is offset from UTC; can be negative
+ /** Minutes by which this time is offset from UTC; if _tz_hour is negative
+ * this will be either 0 or negative.
+ */
+ int _tz_minute;
};
std::ostream&