From 7b303d171cb7efa0c960cbf9b926d43f902dcad6 Mon Sep 17 00:00:00 2001 From: wumingqiao Date: Mon, 16 Jul 2018 15:43:13 +0800 Subject: [PATCH] include/utime.h: remove improper comments Signed-off-by: wumingqiao --- src/include/utime.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/utime.h b/src/include/utime.h index a0dba3048c288..61fc73f61d179 100644 --- a/src/include/utime.h +++ b/src/include/utime.h @@ -220,7 +220,7 @@ public: // raw seconds. this looks like a relative time. out << (long)sec() << "." << std::setw(6) << usec(); } else { - // localtime. this looks like an absolute time. + // this looks like an absolute time. // aim for http://en.wikipedia.org/wiki/ISO_8601 struct tm bdt; time_t tt = sec(); @@ -249,7 +249,7 @@ public: // raw seconds. this looks like a relative time. out << (long)sec() << "." << std::setw(6) << usec(); } else { - // localtime. this looks like an absolute time. + // this looks like an absolute time. // aim for http://en.wikipedia.org/wiki/ISO_8601 struct tm bdt; time_t tt = sec(); @@ -278,7 +278,7 @@ public: // raw seconds. this looks like a relative time. out << (long)sec() << "." << std::setw(6) << usec(); } else { - // localtime. this looks like an absolute time. + // this looks like an absolute time. // aim for http://en.wikipedia.org/wiki/ISO_8601 struct tm bdt; time_t tt = sec(); @@ -304,7 +304,7 @@ public: // raw seconds. this looks like a relative time. out << (long)sec() << "." << std::setw(6) << usec(); } else { - // localtime. this looks like an absolute time. + // this looks like an absolute time. // aim for http://en.wikipedia.org/wiki/ISO_8601 struct tm bdt; time_t tt = sec(); -- 2.39.5