diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 15:52:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 16:06:26 +0200 |
commit | bc6050a7b42581f0d4fbbe3f4b38b7ed02239d72 (patch) | |
tree | afa63befc8013387c8eabee22f53092330be82b3 /tests/timestamp | |
parent | 95ee62c4079e68d9b2444b490cfb68c703023ab8 (diff) |
Suppress bogus GCC 12 -Wrestrict warning
Diffstat (limited to 'tests/timestamp')
-rw-r--r-- | tests/timestamp/driver.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/timestamp/driver.cxx b/tests/timestamp/driver.cxx index 11f328a..956b295 100644 --- a/tests/timestamp/driver.cxx +++ b/tests/timestamp/driver.cxx @@ -178,15 +178,15 @@ main () assert (parse (".384902285 Feb 21 19:31:10 2016", "%[.N] %b %d %H:%M:%S %Y", - "." + ns (384902285) + " Feb 21 19:31:10 2016")); + '.' + ns (384902285) + " Feb 21 19:31:10 2016")); assert (parse (".384902285 2016-02-21 19:31:10", "%[.N] %Y-%m-%d %H:%M:%S", - "." + ns (384902285) + " 2016-02-21 19:31:10")); + '.' + ns (384902285) + " 2016-02-21 19:31:10")); assert (parse (".3849022852016-02-21 19:31:10", "%[.N]%Y-%m-%d %H:%M:%S", - "." + ns (384902285) + "2016-02-21 19:31:10")); + '.' + ns (384902285) + "2016-02-21 19:31:10")); assert (parse ("Feb 1 2016", "%b %e %Y", "Feb 1 2016")); assert (parse ("Feb 11 2016", "%b %e %Y", "Feb 11 2016")); |