From cadfae31cd2ca389ba5d5dbf856c11b37061d70b Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Sat, 28 Dec 2024 14:40:53 +0000 Subject: [PATCH] Try and avoid an unused import warning Summary: Test Plan: --- src/General/Intern.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/General/Intern.hs b/src/General/Intern.hs index 61253025e..8ec25d3e3 100644 --- a/src/General/Intern.hs +++ b/src/General/Intern.hs @@ -8,9 +8,9 @@ module General.Intern( import Development.Shake.Classes import Foreign.Storable import Data.Word -import Prelude hiding (lookup) import qualified Data.HashMap.Strict as Map import Data.List(foldl') +import Prelude hiding (lookup) -- Invariant: The first field is the highest value in the Map