| 17 | } |
| 18 | |
| 19 | bool EntryClass::allowsEntry(std::uint32_t index) const |
| 20 | { |
| 21 | BOOST_ASSERT(index < CHAR_BIT * sizeof(FlagBaseType)); |
| 22 | return 0 != (enabled_entries_flags & (FlagBaseType{1} << index)); |
| 23 | } |
| 24 | |
| 25 | bool EntryClass::operator==(const EntryClass &other) const |
| 26 | { |