aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2023-02-16 14:41:17 +0000
committerJonathan Wakely <jwakely@redhat.com>2023-02-16 14:48:45 +0000
commitfeff71e035c2948c3e4cbcc06adf1ed633e3bd50 (patch)
tree78b212065002ac28eeb103ad5daca1ffe5f573bf
parentb85c77e19ad9c40231c4050e6ad373b30de7b2b9 (diff)
downloadgcc-feff71e035c2948c3e4cbcc06adf1ed633e3bd50.zip
gcc-feff71e035c2948c3e4cbcc06adf1ed633e3bd50.tar.gz
gcc-feff71e035c2948c3e4cbcc06adf1ed633e3bd50.tar.bz2
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.
-rw-r--r--libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc b/libstdc++-v3/testsuite/std/format/arguments/lwg3810.cc
index c1be229..60587a9 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
}