mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2025-02-18 20:37:42 +00:00
Remove extra ;s from zinflate.cpp (PR #624)
This commit is contained in:
parent
57804328b8
commit
cdae245a13
@ -621,7 +621,7 @@ void Inflator::CreateFixedLiteralDecoder()
|
||||
std::fill(codeLengths + 280, codeLengths + 288, 8);
|
||||
m_fixedLiteralDecoder.reset(new HuffmanDecoder);
|
||||
m_fixedLiteralDecoder->Initialize(codeLengths, 288);
|
||||
};
|
||||
}
|
||||
|
||||
void Inflator::CreateFixedDistanceDecoder()
|
||||
{
|
||||
@ -629,7 +629,7 @@ void Inflator::CreateFixedDistanceDecoder()
|
||||
std::fill(codeLengths + 0, codeLengths + 32, 5);
|
||||
m_fixedDistanceDecoder.reset(new HuffmanDecoder);
|
||||
m_fixedDistanceDecoder->Initialize(codeLengths, 32);
|
||||
};
|
||||
}
|
||||
|
||||
const HuffmanDecoder& Inflator::GetLiteralDecoder()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user