mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 11:59:27 +08:00
Rename fprintf_symbol_filtered
fprintf_symbol_filtered is misnamed, because whether filtering happens is now up to the stream. This renames it to fprintf_symbol, which isn't a great name (the first "f" doesn't mean much and the second one is truly meaningless here), but "print_symbol" was already taken.
This commit is contained in:
@ -283,10 +283,10 @@ cp_type_print_method_args (struct type *mtype, const char *prefix,
|
||||
int varargs = mtype->has_varargs ();
|
||||
int i;
|
||||
|
||||
fprintf_symbol_filtered (stream, prefix,
|
||||
language_cplus, DMGL_ANSI);
|
||||
fprintf_symbol_filtered (stream, varstring,
|
||||
language_cplus, DMGL_ANSI);
|
||||
fprintf_symbol (stream, prefix,
|
||||
language_cplus, DMGL_ANSI);
|
||||
fprintf_symbol (stream, varstring,
|
||||
language_cplus, DMGL_ANSI);
|
||||
gdb_puts ("(", stream);
|
||||
|
||||
/* Skip the class variable. We keep this here to accommodate older
|
||||
|
Reference in New Issue
Block a user