From cdae245a131eeabb1a1f2566a8e4ea3d7e57ce97 Mon Sep 17 00:00:00 2001 From: Ilja Date: Sat, 31 Mar 2018 19:58:36 +0300 Subject: [PATCH] Remove extra ;s from zinflate.cpp (PR #624) --- zinflate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zinflate.cpp b/zinflate.cpp index 4df27c9d..85991264 100644 --- a/zinflate.cpp +++ b/zinflate.cpp @@ -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() {