summaryrefslogtreecommitdiff
path: root/gdb/cp-support.h
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2011-05-31 21:54:06 +0000
committerKeith Seitz <keiths@redhat.com>2011-05-31 21:54:06 +0000
commitf658463559c9f03672b0fd226e4941f159e65bc0 (patch)
tree6f6fa56b803ce8accdf6aee5a6846b3eb6a582fc /gdb/cp-support.h
parentb96c1e44204ac4aacd3ab8a5e6a8ab9405ad3832 (diff)
downloadgdb-f658463559c9f03672b0fd226e4941f159e65bc0.tar.gz
PR symtab/12704
* cp-namespace.c (ANONYMOUS_NAMESPACE_LEN): Remove. (cp_scan_for_anonymous_namespaces): Use CP_ANONYMOUS_NAMESPACE_STR and CP_ANONYMOUS_NAMESPACE_LEN. (cp_is_anonymous): Likewise. * cp-support.h (CP_ANONYMOUS_NAMESPACE_STR): Define. (CP_ANONYMOUS_NAMESPACE_LEN): Define. * dwarf2read.c (namespace_name): Likewise. (fixup_partial_die): Likewise. * linespec.c (decode_compound): If CP_ANONYMOUS_NAMESPACE_STR is seen in the input, keep it.
Diffstat (limited to 'gdb/cp-support.h')
-rw-r--r--gdb/cp-support.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/cp-support.h b/gdb/cp-support.h
index 57aa03aa523..52d4cb788b5 100644
--- a/gdb/cp-support.h
+++ b/gdb/cp-support.h
@@ -36,6 +36,14 @@ struct objfile;
struct type;
struct demangle_component;
+/* A string representing the name of the anonymous namespace used in GDB. */
+
+#define CP_ANONYMOUS_NAMESPACE_STR "(anonymous namespace)"
+
+/* The length of the string representing the anonymous namespace. */
+
+#define CP_ANONYMOUS_NAMESPACE_LEN 21
+
/* This struct is designed to store data from using directives. It
says that names from namespace IMPORT_SRC should be visible within
namespace IMPORT_DEST. These form a linked list; NEXT is the next