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:
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()) {
|
||||
if (fSkipReferences == SKIP_TYPE_REFERENCES) {
|
||||
if ((fSkipReferences & SKIP_TYPE_REFERENCES) != 0) {
|
||||
if (isTypeReferenceBinding(binding) && !isRequiredReference(name)) {
|
||||
na[0]= null;
|
||||
fStatistics.fReferenceCount--;
|
||||
|
|
Loading…
Add table
Reference in a new issue