- fixed BitArray constructor.

This commit is contained in:
Christoph Oelckers 2021-11-11 21:55:15 +01:00
parent 642088ed80
commit cc16c02baa

View file

@ -1645,7 +1645,7 @@ public:
}
BitArray(unsigned elem)
: bytes((elem + 7) / 8, true)
: bytes((elem + 7) / 8, true), size(elem)
{
}