https://gcc.gnu.org/g:823de62f5f66f052193aa74520dec94fb3488958
commit r15-7531-g823de62f5f66f052193aa74520dec94fb3488958 Author: Jason Merrill <ja...@redhat.com> Date: Fri Feb 14 10:52:21 2025 +0100 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: --- gcc/cp/init.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/init.cc b/gcc/cp/init.cc index 20f4408cc9a1..bc0754735549 100644 --- a/gcc/cp/init.cc +++ b/gcc/cp/init.cc @@ -1093,7 +1093,7 @@ perform_member_init (tree member, tree init, hash_set<tree> &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;