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:
parent
f767541c12
commit
aa03923d5f
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue