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)