summaryrefslogtreecommitdiff
path: root/gdb/typeprint.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/typeprint.h')
-rw-r--r--gdb/typeprint.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/typeprint.h b/gdb/typeprint.h
index c57c75e45f4..1e1509782f9 100644
--- a/gdb/typeprint.h
+++ b/gdb/typeprint.h
@@ -27,6 +27,12 @@ struct type_print_options
{
/* True means that no special printing flags should apply. */
unsigned int raw : 1;
+
+ /* True means print methods in a class. */
+ unsigned int print_methods : 1;
+
+ /* True means print typedefs in a class. */
+ unsigned int print_typedefs : 1;
};
extern const struct type_print_options type_print_raw_options;