public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-6565] libstdc++: Fix %S format of duration with floating-point rep
@ 2023-12-15  0:01 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2023-12-15  0:01 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:2ef5200a6fb7311074904a1b4bf7ce750618a068

commit r14-6565-g2ef5200a6fb7311074904a1b4bf7ce750618a068
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Thu Dec 14 15:26:42 2023 +0000

    libstdc++: Fix %S format of duration with floating-point rep
    
    I got the order of arguments to std::format_to wrong. It was in a
    discarded statement, for a case which wasn't being tested.
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/chrono_io.h (__formatter_chrono::_M_S): Fix order
            of arguments to std::format_to.
            * testsuite/20_util/duration/io.cc: Test subsecond duration with
            floating-point rep.

Diff:
---
 libstdc++-v3/include/bits/chrono_io.h         | 2 +-
 libstdc++-v3/testsuite/20_util/duration/io.cc | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/chrono_io.h b/libstdc++-v3/include/bits/chrono_io.h
index bcd76e4ab7b..c30451651ea 100644
--- a/libstdc++-v3/include/bits/chrono_io.h
+++ b/libstdc++-v3/include/bits/chrono_io.h
@@ -1137,7 +1137,7 @@ namespace __format
 	      using rep = typename decltype(__ss)::rep;
 	      if constexpr (is_floating_point_v<rep>)
 		{
-		  __out = std::format_to(__loc, std::move(__out),
+		  __out = std::format_to(std::move(__out), __loc,
 					 _GLIBCXX_WIDEN("{:.{}Lg}"),
 					 __ss.count(),
 					 __hms.fractional_width);
diff --git a/libstdc++-v3/testsuite/20_util/duration/io.cc b/libstdc++-v3/testsuite/20_util/duration/io.cc
index d2b9de73f83..0582c0075a5 100644
--- a/libstdc++-v3/testsuite/20_util/duration/io.cc
+++ b/libstdc++-v3/testsuite/20_util/duration/io.cc
@@ -95,6 +95,10 @@ test_format()
 		    "required by the chrono-specs") != s.npos);
     }
   }
+
+  std::chrono::duration<float, std::milli> d{0.5};
+  s = std::format("{}", d);
+  VERIFY( s == "0.5ms" );
 }
 
 void

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-12-15  0:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-15  0:01 [gcc r14-6565] libstdc++: Fix %S format of duration with floating-point rep Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).