diff options
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 44f6c23..42db58a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2006-07-28 Kazu Hirata <kazu@codesourcery.com> + + * cp-tree.h: Fix a comment typo. + 2006-07-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de> PR c++/27572 diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index e02d3d7..040dd90 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3421,7 +3421,7 @@ enum overload_flags { NO_SPECIAL = 0, DTOR_FLAG, OP_FLAG, TYPENAME_FLAG }; /* We are checking that a constructor can be called -- but we do not actually plan to call it. */ #define LOOKUP_CONSTRUCTOR_CALLABLE (1 << 10) -/* Return friend decarations and un-declared builtin functions. +/* Return friend declarations and un-declared builtin functions. (Normally, these entities are registered in the symbol table, but not found by lookup.) */ #define LOOKUP_HIDDEN (LOOKUP_CONSTRUCTOR_CALLABLE << 1) |