mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-12 10:45:37 +02:00
Correct skipping type-refs in indexer.
This commit is contained in:
parent
64399b14a2
commit
413d358931
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ abstract public class PDOMWriter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (name.isReference()) {
|
else if (name.isReference()) {
|
||||||
if (fSkipReferences == SKIP_TYPE_REFERENCES) {
|
if ((fSkipReferences & SKIP_TYPE_REFERENCES) != 0) {
|
||||||
if (isTypeReferenceBinding(binding) && !isRequiredReference(name)) {
|
if (isTypeReferenceBinding(binding) && !isRequiredReference(name)) {
|
||||||
na[0]= null;
|
na[0]= null;
|
||||||
fStatistics.fReferenceCount--;
|
fStatistics.fReferenceCount--;
|
||||||
|
|
Loading…
Add table
Reference in a new issue