summaryrefslogtreecommitdiff
path: root/zinflate.cpp
diff options
context:
space:
mode:
authorIlja <ilja.honkonen@fmi.fi>2018-03-31 19:58:36 +0300
committerJeffrey Walton <noloader@gmail.com>2018-03-31 12:58:36 -0400
commitcdae245a131eeabb1a1f2566a8e4ea3d7e57ce97 (patch)
treeedc06210b7ca6dd2e40a1c253886905b1e1508d8 /zinflate.cpp
parent57804328b8b9dfb257179ae575c28a779800619c (diff)
downloadcryptopp-git-cdae245a131eeabb1a1f2566a8e4ea3d7e57ce97.tar.gz
Remove extra ;s from zinflate.cpp (PR #624)
Diffstat (limited to 'zinflate.cpp')
-rw-r--r--zinflate.cpp4
1 files 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()
{