From feff71e035c2948c3e4cbcc06adf1ed633e3bd50 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 16 Feb 2023 14:41:17 +0000 Subject: [PATCH] libstdc++: Replace non-ascii character in test 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 --git a/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc b/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc index c1be229040f7..60587a93d2c9 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(…)); // won't work + // foo(make_format_args(...)); // won't work foo(basic_format_args(make_format_args(1, 2, 3))); // should work } -- 2.47.2