* p-typeprint.c (pascal_type_print_method_args): Fix problem in
display of type of method arguments.
This commit is contained in:
parent
ab27a17180
commit
3a9d7214ad
2 changed files with 10 additions and 4 deletions
|
@ -165,14 +165,15 @@ pascal_type_print_method_args (char *physname, char *methodname,
|
|||
|
||||
if (physname && (*physname != 0))
|
||||
{
|
||||
int i = 0;
|
||||
int len = 0;
|
||||
char storec;
|
||||
char *argname;
|
||||
fputs_filtered (" (", stream);
|
||||
/* we must demangle this */
|
||||
while (isdigit (physname[0]))
|
||||
{
|
||||
int len = 0;
|
||||
int i;
|
||||
char storec;
|
||||
char *argname;
|
||||
|
||||
while (isdigit (physname[len]))
|
||||
{
|
||||
len++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue