diff options
Diffstat (limited to 'gdb/compile/compile-c-support.c')
-rw-r--r-- | gdb/compile/compile-c-support.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/gdb/compile/compile-c-support.c b/gdb/compile/compile-c-support.c index 7ad0a87..c969b42 100644 --- a/gdb/compile/compile-c-support.c +++ b/gdb/compile/compile-c-support.c @@ -25,6 +25,7 @@ #include "macrotab.h" #include "macroscope.h" #include "regcache.h" +#include "common/function-view.h" /* See compile-internal.h. */ @@ -122,10 +123,8 @@ c_get_compile_context (void) static void print_one_macro (const char *name, const struct macro_definition *macro, struct macro_source_file *source, int line, - void *user_data) + ui_file *file) { - struct ui_file *file = (struct ui_file *) user_data; - /* Don't print command-line defines. They will be supplied another way. */ if (line == 0) @@ -168,7 +167,16 @@ write_macro_definitions (const struct block *block, CORE_ADDR pc, scope = user_macro_scope (); if (scope != NULL && scope->file != NULL && scope->file->table != NULL) - macro_for_each_in_scope (scope->file, scope->line, print_one_macro, file); + { + macro_for_each_in_scope (scope->file, scope->line, + [&] (const char *name, + const macro_definition *macro, + macro_source_file *source, + int line) + { + print_one_macro (name, macro, source, line, file); + }); + } } /* Helper function to construct a header scope for a block of code. |