LZLookupTable: Default destructor

This commit is contained in:
Lioncash 2019-08-15 23:41:10 -04:00
parent 663696fe72
commit 3092dc79e7
1 changed files with 1 additions and 1 deletions

View File

@ -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)