diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-22 16:31:06 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-02-14 06:22:33 -0700 |
commit | 13eb081a83b6f9b07cf4447e52e1d0503bf90211 (patch) | |
tree | 3dfa1010674e668dffef21fe981c45465e4b6942 /gdb/language.h | |
parent | 7b8c55afd07abf1e2e4efbeca4b9a614ce8d4e1e (diff) | |
download | binutils-13eb081a83b6f9b07cf4447e52e1d0503bf90211.zip binutils-13eb081a83b6f9b07cf4447e52e1d0503bf90211.tar.gz binutils-13eb081a83b6f9b07cf4447e52e1d0503bf90211.tar.bz2 |
Remove LA_PRINT_TYPE
This removes the LA_PRINT_TYPE macro, in favor of using ordinary
method calls.
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/language.h b/gdb/language.h index bfdade3..3930f5b 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -755,9 +755,6 @@ extern enum language set_language (enum language); the current setting of working_lang, which the user sets with the "set language" command. */ -#define LA_PRINT_TYPE(type,varstring,stream,show,level,flags) \ - (current_language->print_type(type,varstring,stream,show,level,flags)) - #define LA_PRINT_CHAR(ch, type, stream) \ (current_language->printchar (ch, type, stream)) #define LA_PRINT_STRING(stream, elttype, string, length, encoding, force_ellipses, options) \ |