cp-namespace.c (cp_lookup_nested_symbol): Fix comments.
authorDoug Evans <xdje42@gmail.com>
Thu, 11 Dec 2014 20:05:25 +0000 (12:05 -0800)
committerDoug Evans <xdje42@gmail.com>
Thu, 11 Dec 2014 20:05:25 +0000 (12:05 -0800)
gdb/ChangeLog:

* cp-namespace.c (cp_lookup_nested_symbol): Fix comments.

gdb/ChangeLog
gdb/cp-namespace.c

index f5f80180fdb7380f34e05d9ad35df5fe0443df76..bdbe56b10ac588437ed6492e6d22021e276b7323 100644 (file)
@@ -1,3 +1,7 @@
+2014-12-11  Doug Evans  <xdje42@gmail.com>
+
+       * cp-namespace.c (cp_lookup_nested_symbol): Fix comments.
+
 2014-12-11  Doug Evans  <xdje42@gmail.com>
 
        * symtab.c (lookup_symbol_in_objfile_symtabs): Delete forward decl.
index 692e177a4eaf65ec54e0edcf812ff4b99091c95b..b4004a781b881ab42dd1487db6563723778eaa15 100644 (file)
@@ -785,14 +785,14 @@ find_symbol_in_baseclass (struct type *parent_type, const char *name,
 
 /* Look up a symbol named NESTED_NAME that is nested inside the C++
    class or namespace given by PARENT_TYPE, from within the context
-   given by BLOCK.  Return NULL if there is no such nested type.  */
+   given by BLOCK.  Return NULL if there is no such nested symbol.  */
 
 struct symbol *
 cp_lookup_nested_symbol (struct type *parent_type,
                         const char *nested_name,
                         const struct block *block)
 {
-  /* type_name_no_tag_required provides better error reporting using the
+  /* type_name_no_tag_or_error provides better error reporting using the
      original type.  */
   struct type *saved_parent_type = parent_type;