From aa03923d5f3d8e3587339520b3709621192e9052 Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Fri, 11 Jan 2008 10:34:16 +0000 Subject: [PATCH] Fix for 214870: SemanticHighlighting filters template-id ProblemBindings --- .../eclipse/cdt/internal/ui/editor/SemanticHighlightings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/SemanticHighlightings.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/SemanticHighlightings.java index 63a7f2f27eb..9e1ac8f31b6 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/SemanticHighlightings.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/SemanticHighlightings.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2007 IBM Corporation and others. + * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -1640,7 +1640,7 @@ public class SemanticHighlightings { if (node instanceof IASTProblem) { return true; } - if (node instanceof ICPPASTQualifiedName || node instanceof ICPPASTTemplateId) { + if (node instanceof ICPPASTQualifiedName) { return false; } IBinding binding= token.getBinding();