1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2010-05-12 06:29:42 +00:00
parent 65d630c31c
commit 405b096fc0

View file

@ -102,9 +102,9 @@ public class CQualifierType implements ICQualifierType, ITypeContainer, ISeriali
IASTCompositeTypeSpecifier compTypeSpec = (IASTCompositeTypeSpecifier) declSpec;
t = (IType) compTypeSpec.getName().resolveBinding();
} else if (declSpec instanceof IASTEnumerationSpecifier) {
t = new CEnumeration(((IASTEnumerationSpecifier)declSpec).getName());
t = new CEnumeration(((IASTEnumerationSpecifier) declSpec).getName());
} else {
t = new CBasicType((ICASTSimpleDeclSpecifier)declSpec);
t = new CBasicType((ICASTSimpleDeclSpecifier) declSpec);
}
return t;