1
0
Fork 0
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:
Bogdan Gheorghe 2005-05-30 15:42:42 +00:00
parent cca981f045
commit d2748911a5

View file

@ -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;
}
}