From: Jason Merrill Date: Fri, 14 Feb 2025 09:52:21 +0000 (+0100) Subject: c++: remove unicode from comment X-Git-Tag: basepoints/gcc-16~2022 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=823de62f5f66f052193aa74520dec94fb3488958;p=thirdparty%2Fgcc.git c++: remove unicode from comment We had a stray U+2019 right single quotation mark instead of U+0027 apostrophe. gcc/cp/ChangeLog: * init.cc (perform_member_init): Remove unicode from comment. --- diff --git a/gcc/cp/init.cc b/gcc/cp/init.cc index 20f4408cc9a..bc075473554 100644 --- a/gcc/cp/init.cc +++ b/gcc/cp/init.cc @@ -1093,7 +1093,7 @@ perform_member_init (tree member, tree init, hash_set &uninitialized) { /* With references and list-initialization, we need to deal with extending temporary lifetimes. 12.2p5: "A temporary bound to a - reference member in a constructor’s ctor-initializer (12.6.2) + reference member in a constructor's ctor-initializer (12.6.2) persists until the constructor exits." */ unsigned i; tree t; releasing_vec cleanups;