From 3092dc79e7dfc7b0406ba99f289b1dc38cee9583 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Aug 2019 23:41:10 -0400 Subject: [PATCH] LZLookupTable: Default destructor --- src/LZ77/LZLookupTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LZ77/LZLookupTable.cpp b/src/LZ77/LZLookupTable.cpp index e7b7ba6..f2fcea5 100644 --- a/src/LZ77/LZLookupTable.cpp +++ b/src/LZ77/LZLookupTable.cpp @@ -27,7 +27,7 @@ LZLookupTable::LZLookupTable(atInt32 minimumMatch, atInt32 slidingWindow, atInt3 m_buffer.reserve(m_minimumMatch); } -LZLookupTable::~LZLookupTable() {} +LZLookupTable::~LZLookupTable() = default; void LZLookupTable::setLookAheadWindow(atInt32 lookAheadWindow) { if (lookAheadWindow > 0)