1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for 214870: SemanticHighlighting filters template-id ProblemBindings

This commit is contained in:
Anton Leherbauer 2008-01-11 10:34:16 +00:00
parent f767541c12
commit aa03923d5f

View file

@ -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();