diff --git a/include/LZ77/LZLookupTable.hpp b/include/LZ77/LZLookupTable.hpp index 6fb4df0..9f3017b 100644 --- a/include/LZ77/LZLookupTable.hpp +++ b/include/LZ77/LZLookupTable.hpp @@ -22,7 +22,7 @@ public: void setLookAheadWindow(atInt32 lookAheadWindow); private: - typedef std::multimap, int32_t> LookupTable; + using LookupTable = std::multimap, int32_t>; LookupTable table; atInt32 m_minimumMatch = 3; atInt32 m_slidingWindow = 4096;