1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Correct skipping type-refs in indexer.

This commit is contained in:
Markus Schorn 2008-11-10 14:43:28 +00:00
parent 64399b14a2
commit 413d358931

View file

@ -245,7 +245,7 @@ abstract public class PDOMWriter {
}
}
else if (name.isReference()) {
if (fSkipReferences == SKIP_TYPE_REFERENCES) {
if ((fSkipReferences & SKIP_TYPE_REFERENCES) != 0) {
if (isTypeReferenceBinding(binding) && !isRequiredReference(name)) {
na[0]= null;
fStatistics.fReferenceCount--;