Clean up types (#9)

* remove unused node and edge types

* update version number
This commit is contained in:
Malte Langkabel
2019-11-04 18:45:44 +01:00
committed by GitHub
parent d18654a70f
commit 707de37391
11 changed files with 12 additions and 44 deletions
+4 -5
View File
@@ -41,11 +41,10 @@ namespace sourcetrail
ENUM = 1 << 14,
ENUM_CONSTANT = 1 << 15,
TYPEDEF = 1 << 16,
TEMPLATE_PARAMETER = 1 << 17,
TYPE_PARAMETER = 1 << 18,
FILE = 1 << 19,
MACRO = 1 << 20,
UNION = 1 << 21
TYPE_PARAMETER = 1 << 17,
FILE = 1 << 18,
MACRO = 1 << 19,
UNION = 1 << 20
};
int nodeKindToInt(NodeKind kind);