aboutsummaryrefslogtreecommitdiff
path: root/libbutl/timestamp.mxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-06-10 13:26:27 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-06-11 10:25:02 +0300
commit8483129b6a4746247fd7fb3b5554e10181ad937a (patch)
tree379590c11696dea9aeb1532886ddead944b65d37 /libbutl/timestamp.mxx
parent70314b3303f712a0277b80b23bc3613744e6178e (diff)
Add workaround for MinGW GCC bug so to_stream(timestamp) properly handles %e specifier
Diffstat (limited to 'libbutl/timestamp.mxx')
-rw-r--r--libbutl/timestamp.mxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/timestamp.mxx b/libbutl/timestamp.mxx
index 9525ec0..141e13d 100644
--- a/libbutl/timestamp.mxx
+++ b/libbutl/timestamp.mxx
@@ -79,7 +79,7 @@ LIBBUTL_MODEXPORT namespace butl
// Print human-readable representation of the timestamp.
//
- // By default the timestamp is printed by localtime_r() in the local
+ // By default the timestamp is converted by localtime_r() to the local
// timezone, so tzset() from <time.h> should be called prior to using the
// corresponding operator or the to_stream() function (normally from main()
// or equivalent).