diff options
Diffstat (limited to 'gdb/p-lang.c')
-rw-r--r-- | gdb/p-lang.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/p-lang.c b/gdb/p-lang.c index 8d96dd1..9aa03de 100644 --- a/gdb/p-lang.c +++ b/gdb/p-lang.c @@ -398,7 +398,6 @@ extern const struct language_data pascal_language_data = pascal_printchar, /* Print a character constant */ pascal_printstr, /* Function to print string constant */ pascal_emit_char, /* Print a single char */ - pascal_print_type, /* Print a type using appropriate syntax */ pascal_print_typedef, /* Print a typedef using appropriate syntax */ pascal_value_print_inner, /* la_value_print_inner */ pascal_value_print, /* Print a top-level value */ @@ -478,6 +477,15 @@ public: lai->bool_type_symbol = "boolean"; lai->bool_type_default = builtin->builtin_bool; } + + /* See language.h. */ + + void print_type (struct type *type, const char *varstring, + struct ui_file *stream, int show, int level, + const struct type_print_options *flags) const override + { + pascal_print_type (type, varstring, stream, show, level, flags); + } }; /* Single instance of the Pascal language class. */ |