1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Cosmetics

Change-Id: I778d142e115b0a70a832138a9170bee5541fce4f
This commit is contained in:
Sergey Prigogin 2017-01-11 10:51:33 -08:00
parent 88ee3029fc
commit b96dace616

View file

@ -455,7 +455,7 @@ public class ASTTypeUtil {
result.append(Keywords.ENUM);
result.append(SPACE);
}
ICPPBinding binding = ((ICPPBinding) type);
ICPPBinding binding = (ICPPBinding) type;
boolean nested = binding.getOwner() instanceof ICPPClassType;
boolean qualify = normalize || nested || (type instanceof ITypedef && type instanceof ICPPSpecialization);
appendCppName(binding, normalize, qualify, result);