Fix for:
CID
1274314 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
uninit_member: Non-static class member m_header_crc is not initialized
in this constructor nor in any functions that it calls.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
const uint32_t BitVector<_b>::BLOCK_SIZE = 4096;
template <uint8_t _b>
-BitVector<_b>::BitVector() : m_size(0), m_crc_enabled(true)
+BitVector<_b>::BitVector() : m_size(0), m_crc_enabled(true), m_header_crc(0)
{
}