summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2021-09-08 09:32:58 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-09-17 09:45:36 -0400
commitda60e6276e4b71217e2e75dfa49f2d460b526af3 (patch)
treef05c9f44037b0799d4a80311b29c264507908ad1
parentc480f8f27b3baf1240ae330188c8df15dc4f7807 (diff)
downloadhaskell-da60e6276e4b71217e2e75dfa49f2d460b526af3.tar.gz
Fix annoying warning about Data.List unqualified import
-rw-r--r--compiler/GHC/Unit/Home/ModInfo.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Unit/Home/ModInfo.hs b/compiler/GHC/Unit/Home/ModInfo.hs
index 3450844cb5..d41bc0c9f6 100644
--- a/compiler/GHC/Unit/Home/ModInfo.hs
+++ b/compiler/GHC/Unit/Home/ModInfo.hs
@@ -32,7 +32,7 @@ import GHC.Types.Unique
import GHC.Types.Unique.DFM
import GHC.Utils.Outputable
-import Data.List
+import Data.List (sortOn)
import Data.Ord
-- | Information about modules in the package being compiled