Merge PR #23066 into master

* refs/pull/23066/head:
	include/utime.h: remove improper comments

Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Patrick Donnelly 2018-08-12 14:51:26 -07:00
commit 0ef08e1ba9
No known key found for this signature in database
GPG Key ID: 3A2A7E25BEA8AADB

View File

@ -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();