- fix many compiler warnings

This commit is contained in:
2025-08-21 11:04:56 +03:00
parent 6b6f4147db
commit 178ebac88a
26 changed files with 74 additions and 79 deletions

View File

@@ -284,9 +284,6 @@ void BitReader::init()
mCurrentBit = 0;
}
BitReader::~BitReader()
{}
// Check for valid position
uint8_t BitReader::readBit()
{
@@ -357,9 +354,6 @@ void BitWriter::init()
mCurrentBit = 0;
}
BitWriter::~BitWriter()
{}
BitWriter& BitWriter::writeBit(int bit)
{
bit = bit ? 1 : 0;