mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-09 21:50:35 +00:00
* c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
This commit is contained in:
parent
3405876ae7
commit
7fc75ca750
@ -1,3 +1,7 @@
|
||||
2013-01-25 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
|
||||
|
||||
2013-01-25 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* remote.c (stop_reply_extract_thread): New.
|
||||
|
@ -923,7 +923,7 @@ qualified_name: TYPENAME COLONCOLON name
|
||||
&& TYPE_CODE (type) != TYPE_CODE_UNION
|
||||
&& TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
|
||||
error (_("`%s' is not defined as an aggregate type."),
|
||||
TYPE_NAME (type));
|
||||
TYPE_SAFE_NAME (type));
|
||||
|
||||
write_exp_elt_opcode (OP_SCOPE);
|
||||
write_exp_elt_type (type);
|
||||
@ -939,7 +939,7 @@ qualified_name: TYPENAME COLONCOLON name
|
||||
&& TYPE_CODE (type) != TYPE_CODE_UNION
|
||||
&& TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
|
||||
error (_("`%s' is not defined as an aggregate type."),
|
||||
TYPE_NAME (type));
|
||||
TYPE_SAFE_NAME (type));
|
||||
|
||||
tmp_token.ptr = (char*) alloca ($4.length + 2);
|
||||
tmp_token.length = $4.length + 1;
|
||||
@ -959,7 +959,7 @@ qualified_name: TYPENAME COLONCOLON name
|
||||
char *copy = copy_name ($3);
|
||||
error (_("No type \"%s\" within class "
|
||||
"or namespace \"%s\"."),
|
||||
copy, TYPE_NAME ($1.type));
|
||||
copy, TYPE_SAFE_NAME ($1.type));
|
||||
}
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user