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 553b38d..dff9d47 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -149,7 +149,6 @@ extern const struct language_data d_language_data = c_emit_char, /* Print a single char. */ c_print_typedef, /* Print a typedef using appropriate syntax. */ - d_value_print_inner, /* la_value_print_inner */ "this", false, /* la_store_sym_names_in_linkage_form_p */ d_lookup_symbol_nonlocal, @@ -257,6 +256,15 @@ public: { c_print_type (type, varstring, stream, show, level, flags); } + + /* See language.h. */ + + void value_print_inner + (struct value *val, struct ui_file *stream, int recurse, + const struct value_print_options *options) const override + { + return d_value_print_inner (val, stream, recurse, options); + } }; /* Single instance of the D language class. */ |