*** c-typeprint.c.~1~ Tue Jan 8 11:43:51 2002 --- c-typeprint.c Wed Jan 9 20:44:54 2002 *************** is_type_conversion_operator (struct type *** 407,413 **** else if (strncmp (name, "delete", 6) == 0) name += 6; else ! return 0; /* Is that really the end of the name? */ if (('a' <= *name && *name <= 'z') --- 407,415 ---- else if (strncmp (name, "delete", 6) == 0) name += 6; else ! /* 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')