mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 15:42:52 +00:00
* c-typeprint.c (is_type_conversion_operator): Fix thinko.
This commit is contained in:
parent
155ca243e1
commit
39c22d1ade
@ -1,3 +1,7 @@
|
|||||||
|
2002-01-09 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
|
* c-typeprint.c (is_type_conversion_operator): Fix thinko.
|
||||||
|
|
||||||
2002-01-09 Michael Snyder <msnyder@redhat.com>
|
2002-01-09 Michael Snyder <msnyder@redhat.com>
|
||||||
|
|
||||||
* i386-linux-nat.c (fill_fpxregset): Make global.
|
* i386-linux-nat.c (fill_fpxregset): Make global.
|
||||||
|
@ -366,6 +366,7 @@ Jim Kingdon jkingdon@engr.sgi.com ++
|
|||||||
Jonathan Larmour jlarmour@redhat.co.uk
|
Jonathan Larmour jlarmour@redhat.co.uk
|
||||||
H.J. Lu hjl@lucon.org
|
H.J. Lu hjl@lucon.org
|
||||||
Glen McCready gkm@redhat.com
|
Glen McCready gkm@redhat.com
|
||||||
|
Jason Merrill jason@redhat.com
|
||||||
Jason Molenda jmolenda@apple.com
|
Jason Molenda jmolenda@apple.com
|
||||||
Pierre Muller muller@sourceware.redhat.com
|
Pierre Muller muller@sourceware.redhat.com
|
||||||
Alexandre Oliva aoliva@redhat.com
|
Alexandre Oliva aoliva@redhat.com
|
||||||
|
@ -407,7 +407,9 @@ is_type_conversion_operator (struct type *type, int i, int j)
|
|||||||
else if (strncmp (name, "delete", 6) == 0)
|
else if (strncmp (name, "delete", 6) == 0)
|
||||||
name += 6;
|
name += 6;
|
||||||
else
|
else
|
||||||
return 0;
|
/* If it doesn't look like new or delete, it's a type conversion
|
||||||
|
operator. */
|
||||||
|
return 1;
|
||||||
|
|
||||||
/* Is that really the end of the name? */
|
/* Is that really the end of the name? */
|
||||||
if (('a' <= *name && *name <= 'z')
|
if (('a' <= *name && *name <= 'z')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user