mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibCompress: Make CanonicalCode::read_symbol
const
This commit is contained in:
parent
f79165cefe
commit
d2dd4142d1
Notes:
sideshowbarker
2024-07-17 09:48:50 +09:00
Author: https://github.com/LucasChollet Commit: https://github.com/SerenityOS/serenity/commit/d2dd4142d1 Pull-request: https://github.com/SerenityOS/serenity/pull/19589 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/nico
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
namespace Compress {
|
||||
|
||||
ErrorOr<size_t> BrotliDecompressionStream::CanonicalCode::read_symbol(LittleEndianInputBitStream& input_stream)
|
||||
ErrorOr<size_t> BrotliDecompressionStream::CanonicalCode::read_symbol(LittleEndianInputBitStream& input_stream) const
|
||||
{
|
||||
size_t code_bits = 1;
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue