| 146 | |
| 147 | template<class IndexType> |
| 148 | forceinline void |
| 149 | BitSet<IndexType>::clear_mask(BitSetData* mask) const { |
| 150 | assert(_limit > 0U); |
| 151 | for (IndexType i=0; i<_limit; i++) { |
| 152 | mask[i].init(false); |
| 153 | assert(mask[i].none()); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | template<class IndexType> |
| 158 | forceinline void |