Remove extra ;s from zinflate.cpp (PR #624)

pull/586/merge
Ilja 2018-03-31 19:58:36 +03:00 committed by Jeffrey Walton
parent 57804328b8
commit cdae245a13
1 changed files with 2 additions and 2 deletions

View File

@ -621,7 +621,7 @@ void Inflator::CreateFixedLiteralDecoder()
std::fill(codeLengths + 280, codeLengths + 288, 8); std::fill(codeLengths + 280, codeLengths + 288, 8);
m_fixedLiteralDecoder.reset(new HuffmanDecoder); m_fixedLiteralDecoder.reset(new HuffmanDecoder);
m_fixedLiteralDecoder->Initialize(codeLengths, 288); m_fixedLiteralDecoder->Initialize(codeLengths, 288);
}; }
void Inflator::CreateFixedDistanceDecoder() void Inflator::CreateFixedDistanceDecoder()
{ {
@ -629,7 +629,7 @@ void Inflator::CreateFixedDistanceDecoder()
std::fill(codeLengths + 0, codeLengths + 32, 5); std::fill(codeLengths + 0, codeLengths + 32, 5);
m_fixedDistanceDecoder.reset(new HuffmanDecoder); m_fixedDistanceDecoder.reset(new HuffmanDecoder);
m_fixedDistanceDecoder->Initialize(codeLengths, 32); m_fixedDistanceDecoder->Initialize(codeLengths, 32);
}; }
const HuffmanDecoder& Inflator::GetLiteralDecoder() const HuffmanDecoder& Inflator::GetLiteralDecoder()
{ {