diff options
Diffstat (limited to 'gdb/cp-valprint.c')
-rw-r--r-- | gdb/cp-valprint.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c index 819736d..108f941 100644 --- a/gdb/cp-valprint.c +++ b/gdb/cp-valprint.c @@ -84,7 +84,7 @@ cp_is_vtbl_member (struct type *type) || type->code () == TYPE_CODE_PTR) /* if using thunks */ { /* Virtual functions tables are full of pointers - to virtual functions. */ + to virtual functions. */ return cp_is_vtbl_ptr_type (type); } } @@ -262,7 +262,7 @@ cp_print_value_fields (struct value *val, struct ui_file *stream, struct value *v; /* Bitfields require special handling, especially due to - byte order problems. */ + byte order problems. */ if (TYPE_FIELD_IGNORE (type, i)) { fputs_styled ("<optimized out or zero length>", @@ -342,7 +342,7 @@ cp_print_value_fields (struct value *val, struct ui_file *stream, if (dont_print_statmem == 0) { size_t obstack_final_size = - obstack_object_size (&dont_print_statmem_obstack); + obstack_object_size (&dont_print_statmem_obstack); if (obstack_final_size > statmem_obstack_initial_size) { @@ -400,8 +400,8 @@ cp_print_value (struct value *val, struct ui_file *stream, if (dont_print_vb == 0) { /* If we're at top level, carve out a completely fresh chunk of - the obstack and use that until this particular invocation - returns. */ + the obstack and use that until this particular invocation + returns. */ /* Bump up the high-water mark. Now alpha is omega. */ obstack_finish (&dont_print_vb_obstack); } @@ -483,7 +483,7 @@ cp_print_value (struct value *val, struct ui_file *stream, } fputs_filtered ("<", stream); /* Not sure what the best notation is in the case where there is - no baseclass name. */ + no baseclass name. */ fputs_filtered (basename ? basename : "", stream); fputs_filtered ("> = ", stream); @@ -531,10 +531,10 @@ cp_print_value (struct value *val, struct ui_file *stream, if (dont_print_vb == 0) { /* Free the space used to deal with the printing - of this type from top level. */ + of this type from top level. */ obstack_free (&dont_print_vb_obstack, last_dont_print); /* Reset watermark so that we can continue protecting - ourselves from whatever we were protecting ourselves. */ + ourselves from whatever we were protecting ourselves. */ dont_print_vb_obstack = tmp_obstack; } } |