1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Made typeof() declSpec's show up in outline view.

This commit is contained in:
John Camelon 2004-04-22 19:02:07 +00:00
parent af85de7600
commit d65c6769ea

View file

@ -117,6 +117,8 @@ public class ASTSimpleTypeSpecifier extends ASTNode implements IASTSimpleTypeSpe
if (isSigned())
type.append("signed "); //$NON-NLS-1$
}
else
type.append( typeName.toString() );
this.typeName = type.toString();
}