diff options
Diffstat (limited to 'gdb/d-lang.c')
-rw-r--r-- | gdb/d-lang.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/d-lang.c b/gdb/d-lang.c index dff9d47..5689b6c 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -151,7 +151,6 @@ extern const struct language_data d_language_data = syntax. */ "this", false, /* la_store_sym_names_in_linkage_form_p */ - d_lookup_symbol_nonlocal, d_op_print_tab, /* Expression operators for printing. */ 1, /* C-style arrays. */ 0, /* String lower bound. */ @@ -265,6 +264,15 @@ public: { return d_value_print_inner (val, stream, recurse, options); } + + /* See language.h. */ + + struct block_symbol lookup_symbol_nonlocal + (const char *name, const struct block *block, + const domain_enum domain) const override + { + return d_lookup_symbol_nonlocal (this, name, block, domain); + } }; /* Single instance of the D language class. */ |