From b96dace61693d341ad3b05f15e50dd8858e97550 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 11 Jan 2017 10:51:33 -0800 Subject: [PATCH] Cosmetics Change-Id: I778d142e115b0a70a832138a9170bee5541fce4f --- .../parser/org/eclipse/cdt/core/dom/ast/ASTTypeUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ASTTypeUtil.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ASTTypeUtil.java index 93dc78ce5e3..99255858b9b 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ASTTypeUtil.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ASTTypeUtil.java @@ -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); @@ -985,7 +985,7 @@ public class ASTTypeUtil { } return 0; } - + /** * Marks start of processing a translation unit during indexing. * Enables caching of string representations of types.