diff options
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r-- | gdb/f-lang.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 49f7b03..5beaf3d 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -508,7 +508,6 @@ extern const struct language_data f_language_data = 0, /* arrays are first-class (not c-style) */ 1, /* String lower bound */ &default_varobj_ops, - "(...)" /* la_struct_too_deep_ellipsis */ }; /* Class representing the Fortran language. */ @@ -707,6 +706,11 @@ public: && TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_CHAR)); } + /* See language.h. */ + + const char *struct_too_deep_ellipsis () const override + { return "(...)"; } + protected: /* See language.h. */ |