diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java index a368a052d87..e4cfb2ef56d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java @@ -30,7 +30,7 @@ import org.eclipse.core.runtime.CoreException; public class ASTInternal { public static IASTNode[] getDeclarationsOfBinding(IBinding binding) { if (binding instanceof ICPPInternalBinding) { - return ((ICPPInternalBinding)binding).getDeclarations(); + return ((ICPPInternalBinding) binding).getDeclarations(); } assert false; return IASTNode.EMPTY_NODE_ARRAY; @@ -57,7 +57,7 @@ public class ASTInternal { public static boolean isStatic(IFunction func, boolean resolveAll) { if (func instanceof ICPPInternalFunction) { - return ((ICPPInternalFunction)func).isStatic(resolveAll); + return ((ICPPInternalFunction) func).isStatic(resolveAll); } if (func instanceof ICInternalFunction) { return ((ICInternalFunction) func).isStatic(resolveAll);