LZLookupTable: Convert typedef into a using alias

This commit is contained in:
Lioncash 2019-08-15 23:47:06 -04:00
parent f7b8c33ed2
commit 70aeed342f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public:
void setLookAheadWindow(atInt32 lookAheadWindow);
private:
typedef std::multimap<std::vector<uint8_t>, int32_t> LookupTable;
using LookupTable = std::multimap<std::vector<uint8_t>, int32_t>;
LookupTable table;
atInt32 m_minimumMatch = 3;
atInt32 m_slidingWindow = 4096;