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