diff mbox series

[committed] libstdc++: Replace non-ascii character in test

Message ID 20230216145448.141622-1-jwakely@redhat.com
State New
Headers show
Series [committed] libstdc++: Replace non-ascii character in test | expand

Commit Message

Jonathan Wakely Feb. 16, 2023, 2:54 p.m. UTC
Tested x86_64-linux. Pushed to trunk.

-- >8 --

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc b/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc
index c1be229040f..60587a93d2c 100644
--- a/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc
+++ b/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc
@@ -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
 }