| 47 | } |
| 48 | |
| 49 | bool TypesHolder::HasWithSubclass(uint32_t type) const |
| 50 | { |
| 51 | uint8_t const level = ftype::GetLevel(type); |
| 52 | for (uint32_t t : *this) |
| 53 | { |
| 54 | ftype::TruncValue(t, level); |
| 55 | if (t == type) |
| 56 | return true; |
| 57 | } |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | void TypesHolder::Remove(uint32_t type) |
| 62 | { |
no test coverage detected