(Bitset) Fixed missing implementation of Reset(bit)
Former-commit-id: a2b0c6e29b87303bdd624f2440e528cb832a8999
This commit is contained in:
parent
860712b09f
commit
2ca9989bfe
|
|
@ -267,6 +267,12 @@ void NzBitset<Block, Allocator>::Reset()
|
|||
Set(false);
|
||||
}
|
||||
|
||||
template<typename Block, class Allocator>
|
||||
void NzBitset<Block, Allocator>::Reset(unsigned int bit)
|
||||
{
|
||||
Set(bit, false);
|
||||
}
|
||||
|
||||
template<typename Block, class Allocator>
|
||||
void NzBitset<Block, Allocator>::Set(bool val)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue