From: Jonathan Wakely Date: Thu, 16 Feb 2023 14:41:17 +0000 (+0000) Subject: libstdc++: Replace non-ascii character in test X-Git-Tag: basepoints/gcc-14~1119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=feff71e035c2948c3e4cbcc06adf1ed633e3bd50;p=thirdparty%2Fgcc.git 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. --- 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 }