diff options
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r-- | gdb/f-lang.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 3e2c97c..d5b2bf2 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -570,7 +570,6 @@ extern const struct language_data f_language_data = f_printstr, /* function to print string constant */ f_emit_char, /* Function to print a single character */ f_print_typedef, /* Print a typedef using appropriate syntax */ - f_value_print_innner, /* la_value_print_inner */ NULL, /* name_of_this */ false, /* la_store_sym_names_in_linkage_form_p */ cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */ @@ -697,6 +696,16 @@ public: code); } + /* 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 f_value_print_inner (val, stream, recurse, options); + } + + protected: /* See language.h. */ |