Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

remove AGGREGATION edge kind (issue #10) #36

Merged
merged 1 commit into from
Oct 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions core/include/EdgeKind.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down
1 change: 0 additions & 1 deletion core/src/EdgeKind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ namespace sourcetrail
EdgeKind::TEMPLATE_SPECIALIZATION,
EdgeKind::INCLUDE,
EdgeKind::IMPORT,
EdgeKind::AGGREGATION,
EdgeKind::MACRO_USAGE
};

Expand Down