]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Replace non-ascii character in test
authorJonathan Wakely <jwakely@redhat.com>
Thu, 16 Feb 2023 14:41:17 +0000 (14:41 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 16 Feb 2023 14:48:45 +0000 (14:48 +0000)
This ensures the test will work with -fexec-charset=ascii.

libstdc++-v3/ChangeLog:

* testsuite/std/format/arguments/lwg3810.cc: Replace UTF-8
ellipsis character.

libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc

index c1be229040f7afc8003eaf9be73faada13d4961a..60587a93d2c985dd0a9c95de31f257d78e9072a6 100644 (file)
@@ -20,6 +20,6 @@ test_ctad()
   using std::make_format_args;
   using SomeContext = std::wformat_context;
 
-  // foo(make_format_args<SomeContext>()); // won't work
+  // foo(make_format_args<SomeContext>(...)); // won't work
   foo(basic_format_args(make_format_args<SomeContext>(1, 2, 3))); // should work
 }