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

NPE Fix for CTagsConsoleParser

This commit is contained in:
Bogdan Gheorghe 2005-03-28 17:32:14 +00:00
parent b456fdc959
commit 51d42b0328
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-03-28 Bogdan Gheorgh
NPE Fix for CTagsConsoleParser
2005-03-28 Bogdan Gheorghe
Initial CTags Indexer contribution

View file

@ -100,7 +100,7 @@ public class CTagsConsoleParser implements IConsoleParser {
entryType = IIndexEncodingConstants.NAMESPACE;
} else if (kind.equals(PROTOTYPE)){
entryType = IIndexEncodingConstants.FUNCTION;
type = ICSearchConstants.DEFINITIONS;
//type = ICSearchConstants.DEFINITIONS;
} else if (kind.equals(STRUCT)){
entryType = IIndexEncodingConstants.STRUCT;
} else if (kind.equals(TYPEDEF)){