Skip to content

Commit

Permalink
More unused import warnings
Browse files Browse the repository at this point in the history
Summary:

Test Plan:
  • Loading branch information
ndmitchell committed Dec 30, 2024
1 parent 380647d commit 59bb9b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Development/Shake/Util.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# OPTIONS_GHC -Wno-unused-imports #-} -- Required since foldl' moves to the prelude

-- | A module for useful utility functions for Shake build systems.
module Development.Shake.Util(
Expand All @@ -10,13 +11,13 @@ import Development.Shake.Internal.Rules.File
import qualified Data.ByteString.Char8 as BS
import qualified General.Makefile as BS
import Data.Tuple.Extra
import Data.List
import Data.List (foldl')
import General.GetOpt
import Data.IORef
import Data.Maybe
import Control.Monad.Extra
import System.IO.Extra as IO


-- | Given the text of a Makefile, extract the list of targets and dependencies. Assumes a
-- small subset of Makefile syntax, mostly that generated by @gcc -MM@.
Expand Down

0 comments on commit 59bb9b9

Please sign in to comment.