aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2008-10-01 17:25:22 +0000
committerTom Tromey <tromey@redhat.com>2008-10-01 17:25:22 +0000
commitbd2e94cec8bb79e117389f7800ccd6b65407f5df (patch)
treedbeace8773114bfd37b31ce2439ed5f323281d72 /gdb/symtab.h
parent8b41ec65018fe0a58338c0940a32f6486b621ecf (diff)
downloadgdb-bd2e94cec8bb79e117389f7800ccd6b65407f5df.zip
gdb-bd2e94cec8bb79e117389f7800ccd6b65407f5df.tar.gz
gdb-bd2e94cec8bb79e117389f7800ccd6b65407f5df.tar.bz2
* symtab.c (search_symbols): Update.
* symtab.h (domain_enum_tag) <METHODS_DOMAIN>: Remove.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index c5ac732..a1dee4f 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -386,18 +386,15 @@ typedef enum domain_enum_tag
/* Searching domains. These overlap with VAR_DOMAIN, providing
some granularity with the search_symbols function. */
- /* Everything in VAR_DOMAIN minus FUNCTIONS_-, TYPES_-, and
- METHODS_DOMAIN */
+ /* Everything in VAR_DOMAIN minus FUNCTIONS_DOMAIN and
+ TYPES_DOMAIN. */
VARIABLES_DOMAIN,
/* All functions -- for some reason not methods, though. */
FUNCTIONS_DOMAIN,
/* All defined types */
- TYPES_DOMAIN,
-
- /* All class methods -- why is this separated out? */
- METHODS_DOMAIN
+ TYPES_DOMAIN
}
domain_enum;