* c-typeprint.c (is_type_conversion_operator): Fix thinko.

This commit is contained in:
Jason Merrill
2002-01-10 00:06:02 +00:00
parent 155ca243e1
commit 39c22d1ade
3 changed files with 8 additions and 1 deletions

View File

@@ -407,7 +407,9 @@ is_type_conversion_operator (struct type *type, int i, int j)
else if (strncmp (name, "delete", 6) == 0)
name += 6;
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? */
if (('a' <= *name && *name <= 'z')