1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

Fixes problem highlighting for qualified names.

This commit is contained in:
Markus Schorn 2008-11-28 15:52:47 +00:00
parent a685bdc67c
commit e2ce799dae

View file

@ -1787,9 +1787,6 @@ public class SemanticHighlightings {
if (node instanceof IASTProblem) { if (node instanceof IASTProblem) {
return true; return true;
} }
if (node instanceof ICPPASTQualifiedName) {
return false;
}
IBinding binding= token.getBinding(); IBinding binding= token.getBinding();
if (binding instanceof IProblemBinding) { if (binding instanceof IProblemBinding) {
return true; return true;