]> git.ipfire.org Git - thirdparty/gcc.git/commit
c++: Fix a typo in function name
authorJakub Jelinek <jakub@redhat.com>
Tue, 15 Nov 2022 07:17:11 +0000 (08:17 +0100)
committerJakub Jelinek <jakub@redhat.com>
Sun, 20 Nov 2022 17:46:38 +0000 (18:46 +0100)
commit792ce47e3600d56d5c83c516372a7ee08d1d2d60
treed08f1230565a6e24065fd7a8eca11b0425060d2d
parent86dea99d8525bf49d51636332d6be440e51b931a
c++: Fix a typo in function name

I've noticed I've made a typo in the name of the function.
Fixed thusly.

2022-11-15  Jakub Jelinek  <jakub@redhat.com>

* cp-tree.h (next_common_initial_seqence): Rename to ...
(next_common_initial_sequence): ... this.
* typeck.cc (next_common_initial_seqence): Rename to ...
(next_common_initial_sequence): ... this.
(layout_compatible_type_p): Call next_common_initial_sequence
rather than next_common_initial_seqence.
* semantics.cc (is_corresponding_member_aggr): Likewise.

(cherry picked from commit 87c4057b3fc7fe2c2f8914d2755024ca890a3bc1)
gcc/cp/cp-tree.h
gcc/cp/semantics.cc
gcc/cp/typeck.cc