Further small cleaning.

This commit is contained in:
jmsgrogan 2023-01-16 12:05:36 +00:00
parent dba6a91ec1
commit c81db288b0
5 changed files with 13 additions and 11 deletions

View file

@ -12,7 +12,7 @@ bool InputBitStream::isFinished() const
return mStream->good();
}
std::vector<unsigned char> InputBitStream::peekNextNBytes(unsigned n) const
std::vector<unsigned char> InputBitStream::peekNextNBytes(unsigned) const
{
return {};
}
@ -29,7 +29,7 @@ std::optional<unsigned char> InputBitStream::readNextByte()
}
}
void InputBitStream::writeByte(unsigned char data, bool checkOverflow )
void InputBitStream::writeByte(unsigned char, bool)
{
}