(Bitset) Fixed missing implementation of Reset(bit)

Former-commit-id: a2b0c6e29b87303bdd624f2440e528cb832a8999
This commit is contained in:
Lynix 2015-03-16 19:21:36 +01:00
parent 860712b09f
commit 2ca9989bfe
1 changed files with 6 additions and 0 deletions

View File

@ -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)
{