Skip to content
Merged
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
5 changes: 5 additions & 0 deletions include/ifc/file.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,14 @@ namespace ifc {
Partition, // Module interface partition unit.
Header, // Header unit.
ExportedTU, // Translation unit where every declaration is exported, scheduled for removal.
Unused0, // Reserved for future use.
Unused1, // Reserved for future use.
Unused2, // Reserved for future use.
Count
};

static_assert(index_like::tag_precision<UnitSort> == 3); // Per current specification.

struct UnitIndex : index_like::Over<UnitSort> {
using Base = index_like::Over<UnitSort>;

Expand Down
Loading