diff options
author | Sami Wagiaalla <swagiaal@redhat.com> | 2010-01-26 16:47:35 +0000 |
---|---|---|
committer | Sami Wagiaalla <swagiaal@redhat.com> | 2010-01-26 16:47:35 +0000 |
commit | b14e635ec430d1a84fa9061bcd404ef76cf5bf11 (patch) | |
tree | 25a1e65300e85c1c2cd240f393c248117c083de4 /gdb/valops.c | |
parent | 8540c487c665cd07366b3d1fa199af33fa5b3691 (diff) | |
download | gdb-b14e635ec430d1a84fa9061bcd404ef76cf5bf11.zip gdb-b14e635ec430d1a84fa9061bcd404ef76cf5bf11.tar.gz gdb-b14e635ec430d1a84fa9061bcd404ef76cf5bf11.tar.bz2 |
2010-01-14 Sami Wagiaalla <swagiaal@redhat.com>
* gdb.cp/nsrecurs.exp: New test.
* gdb.cp/nsrecurs.cc: New test program.
* gdb.cp/nsstress.exp: New test.
* gdb.cp/nsstress.cc: New test program.
* gdb.cp/nsdecl.exp: New test.
* gdb.cp/nsdecl.cc: New test program.
2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
* cp-namespace.c (cp_lookup_symbol_namespace): Added
search_parent argument.
(cp_add_using): Initialize 'searched' field.
(reset_directive_searched): New function.
* cp-support.h: Add 'searched' field to using_direct struct.
(cp_lookup_symbol_imports): Ditto.
* cp-namespace.c (cp_lookup_symbol_imports): Ditto.
Perform recursive search.
Implement non parent search.
* valops.c (value_maybe_namespace_elt): Updated.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index ca34083..2cdbcbe 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -3098,7 +3098,7 @@ value_maybe_namespace_elt (const struct type *curtype, sym = cp_lookup_symbol_namespace (namespace_name, name, NULL, get_selected_block (0), - VAR_DOMAIN); + VAR_DOMAIN, 1); if (sym == NULL) return NULL; |