From c524a9caa2b6645b5968936e315dced30ba85ca1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Aug 2019 23:51:59 -0400 Subject: [PATCH] LZLookupTable: Remove unused include This header and the matching cpp file make no use of std::deque, so this can be removed. --- include/LZ77/LZLookupTable.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/LZ77/LZLookupTable.hpp b/include/LZ77/LZLookupTable.hpp index 9f3017b..b157eb0 100644 --- a/include/LZ77/LZLookupTable.hpp +++ b/include/LZ77/LZLookupTable.hpp @@ -1,9 +1,8 @@ #pragma once -#include -#include -#include #include +#include +#include #include struct LZLengthOffset {