mirror of
https://github.com/libAthena/athena.git
synced 2025-07-01 19:03:42 +00:00
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…
x
Reference in New Issue
Block a user