Merge pull request #36 from CoatiSoftware/remove_aggregation_edge

remove AGGREGATION edge kind (issue #10)
This commit is contained in:
Malte Langkabel
2020-10-12 16:34:35 +02:00
committed by GitHub
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -41,8 +41,7 @@ namespace sourcetrail
TEMPLATE_SPECIALIZATION = 1 << 7,
INCLUDE = 1 << 8,
IMPORT = 1 << 9,
AGGREGATION = 1 << 10,
MACRO_USAGE = 1 << 11,
MACRO_USAGE = 1 << 11, // needs new db version if decremented
ANNOTATION_USAGE = 1 << 12
};
-1
View File
@@ -38,7 +38,6 @@ namespace sourcetrail
EdgeKind::TEMPLATE_SPECIALIZATION,
EdgeKind::INCLUDE,
EdgeKind::IMPORT,
EdgeKind::AGGREGATION,
EdgeKind::MACRO_USAGE
};