diff options
author | Jakub Jelinek <jakub@redhat.com> | 2025-03-29 13:26:38 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2025-03-29 13:26:38 +0100 |
commit | 39bea4b71f0ee45756e68b9e74002b0ca25606e4 (patch) | |
tree | 34298d370629b587ba91f009ceb3498d1cc02b6c /gcc | |
parent | 3258c89fbb092412a69b689425e77972e7a1c567 (diff) | |
download | gcc-39bea4b71f0ee45756e68b9e74002b0ca25606e4.zip gcc-39bea4b71f0ee45756e68b9e74002b0ca25606e4.tar.gz gcc-39bea4b71f0ee45756e68b9e74002b0ca25606e4.tar.bz2 |
c++: Fix comment typo
Found a typo in a comment.
2025-03-29 Jakub Jelinek <jakub@redhat.com>
* name-lookup.cc (maybe_lazily_declare): Fix comment typo,
anout -> about.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/name-lookup.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/name-lookup.cc b/gcc/cp/name-lookup.cc index 7f1ee86..d3aa47b 100644 --- a/gcc/cp/name-lookup.cc +++ b/gcc/cp/name-lookup.cc @@ -2012,8 +2012,8 @@ get_class_binding_direct (tree klass, tree name, bool want_type) static void maybe_lazily_declare (tree klass, tree name) { - /* See big comment anout module_state::write_pendings regarding adding a check - bit. */ + /* See big comment about module_state::write_pendings regarding adding + a check bit. */ if (modules_p ()) lazy_load_pendings (TYPE_NAME (klass)); |