mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* c-typeprint.c (c_type_print_cv_qualifier): Don't print `const'
qualifier on C++ references; all references are innately const.
This commit is contained in:
parent
7674a3df37
commit
7f0b5c30f8
@ -1,3 +1,8 @@
|
||||
2001-04-24 Jim Blandy <jimb@redhat.com>
|
||||
|
||||
* c-typeprint.c (c_type_print_cv_qualifier): Don't print `const'
|
||||
qualifier on C++ references; all references are innately const.
|
||||
|
||||
2001-04-20 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* event-top.h: Fix formatting.
|
||||
|
@ -293,7 +293,11 @@ c_type_print_cv_qualifier (struct type *type, struct ui_file *stream,
|
||||
{
|
||||
int flag = 0;
|
||||
|
||||
if (TYPE_CONST (type))
|
||||
/* We don't print `const' qualifiers for references --- since all
|
||||
operators affect the thing referenced, not the reference itself,
|
||||
every reference is `const'. */
|
||||
if (TYPE_CONST (type)
|
||||
&& TYPE_CODE (type) != TYPE_CODE_REF)
|
||||
{
|
||||
if (need_pre_space)
|
||||
fprintf_filtered (stream, " ");
|
||||
|
Loading…
Reference in New Issue
Block a user