From 70aeed342fac19cbb715dc3c0e77464226a58660 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Aug 2019 23:47:06 -0400 Subject: [PATCH] LZLookupTable: Convert typedef into a using alias --- include/LZ77/LZLookupTable.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;