mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-05 08:46:02 +02:00
Add Includes to Index for DOM Indexer
This commit is contained in:
parent
cca981f045
commit
d2748911a5
1 changed files with 6 additions and 0 deletions
|
@ -185,6 +185,12 @@ class IndexerOutputWrapper {
|
|||
namedEntry.setNameOffset(offset, length, offsetType);
|
||||
namedEntry.serialize(indexerOutput);
|
||||
break;
|
||||
|
||||
case INCLUDE_CONST:
|
||||
namedEntry = new NamedEntry(IIndex.INCLUDE, entryKind, name, 0, fileNumber);
|
||||
namedEntry.setNameOffset(offset, length, offsetType);
|
||||
namedEntry.serialize(indexerOutput);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue