1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:07:35 +00:00

LibCompress: Make CanonicalCode::read_symbol const

This commit is contained in:
Lucas CHOLLET 2023-07-06 13:26:23 -04:00 committed by Andrew Kaster
parent f79165cefe
commit d2dd4142d1
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ public:
public:
CanonicalCode() = default;
ErrorOr<size_t> read_symbol(LittleEndianInputBitStream&);
ErrorOr<size_t> read_symbol(LittleEndianInputBitStream&) const;
void clear()
{
m_symbol_codes.clear();