mirror of https://github.com/libAthena/athena.git
LZLookupTable: Default destructor
This commit is contained in:
parent
663696fe72
commit
3092dc79e7
|
@ -27,7 +27,7 @@ LZLookupTable::LZLookupTable(atInt32 minimumMatch, atInt32 slidingWindow, atInt3
|
||||||
m_buffer.reserve(m_minimumMatch);
|
m_buffer.reserve(m_minimumMatch);
|
||||||
}
|
}
|
||||||
|
|
||||||
LZLookupTable::~LZLookupTable() {}
|
LZLookupTable::~LZLookupTable() = default;
|
||||||
|
|
||||||
void LZLookupTable::setLookAheadWindow(atInt32 lookAheadWindow) {
|
void LZLookupTable::setLookAheadWindow(atInt32 lookAheadWindow) {
|
||||||
if (lookAheadWindow > 0)
|
if (lookAheadWindow > 0)
|
||||||
|
|
Loading…
Reference in New Issue