- 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
+2 -2
View File
@@ -103,7 +103,7 @@ namespace ice
public:
BitReader(const void* input, size_t bytes);
BitReader(const ByteBuffer& buffer);
~BitReader();
~BitReader() = default;
uint8_t readBit();
uint32_t readBits(size_t nrOfBits);
@@ -126,7 +126,7 @@ namespace ice
public:
BitWriter(void* output);
BitWriter(ByteBuffer& buffer);
~BitWriter();
~BitWriter() = default;
// Bit must be 0 or 1
BitWriter& writeBit(int bit);