mirror of https://github.com/libAthena/athena.git
LZLookupTable: Convert typedef into a using alias
This commit is contained in:
parent
f7b8c33ed2
commit
70aeed342f
|
@ -22,7 +22,7 @@ public:
|
||||||
void setLookAheadWindow(atInt32 lookAheadWindow);
|
void setLookAheadWindow(atInt32 lookAheadWindow);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef std::multimap<std::vector<uint8_t>, int32_t> LookupTable;
|
using LookupTable = std::multimap<std::vector<uint8_t>, int32_t>;
|
||||||
LookupTable table;
|
LookupTable table;
|
||||||
atInt32 m_minimumMatch = 3;
|
atInt32 m_minimumMatch = 3;
|
||||||
atInt32 m_slidingWindow = 4096;
|
atInt32 m_slidingWindow = 4096;
|
||||||
|
|
Loading…
Reference in New Issue