]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add call to test_format in std/time/clock/local/io.cc
authorJonathan Wakely <jwakely@redhat.com>
Wed, 13 May 2026 19:48:42 +0000 (20:48 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 13 May 2026 19:50:03 +0000 (20:50 +0100)
This function was defined but not being called at runtime.

libstdc++-v3/ChangeLog:

* testsuite/std/time/clock/local/io.cc: Call test_format.

libstdc++-v3/testsuite/std/time/clock/local/io.cc

index 6efd81a87c2ab0110878382f0ec85ab8242c001f..9774f59fc38f83f9b87e3badeda00c62b5972504 100644 (file)
@@ -136,5 +136,6 @@ static_assert( ! ostream_insertable<std::chrono::local_time<D>> );
 int main()
 {
   test_ostream();
+  test_format();
   test_parse();
 }