diff options
Diffstat (limited to 'gdb/expprint.c')
-rw-r--r-- | gdb/expprint.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/expprint.c b/gdb/expprint.c index 5826108..92a3ab8 100644 --- a/gdb/expprint.c +++ b/gdb/expprint.c @@ -32,6 +32,7 @@ #include "cli/cli-style.h" #include "c-lang.h" #include "expop.h" +#include "ada-exp.h" #include <ctype.h> @@ -1284,6 +1285,13 @@ dump_for_expression (struct ui_file *stream, int depth, } void +dump_for_expression (struct ui_file *stream, int depth, + const std::unique_ptr<ada_component> &comp) +{ + comp->dump (stream, depth); +} + +void float_const_operation::dump (struct ui_file *stream, int depth) const { fprintf_filtered (stream, _("%*sFloat: "), depth, ""); |