X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2FbasicTypes%2FModule.lhs;h=ece181a296d1f08e7e19a8ebffce0b5f73e55b07;hb=81f944da0ed9da6116800aeb575d6ea2a1937ac4;hp=720c51f163e507633187bf7dab736a8f56e67f4e;hpb=61d2625ae2e6a4cdae2ffc92df828905e81c24cc;p=ghc-hetmet.git diff --git a/compiler/basicTypes/Module.lhs b/compiler/basicTypes/Module.lhs index 720c51f..ece181a 100644 --- a/compiler/basicTypes/Module.lhs +++ b/compiler/basicTypes/Module.lhs @@ -1,5 +1,5 @@ % -% (c) The University of Glasgow, 2004 +% (c) The University of Glasgow, 2004-2006 % Module @@ -9,6 +9,13 @@ These are Uniquable, hence we can build FiniteMaps with Modules as the keys. \begin{code} +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + module Module ( -- * The ModuleName type @@ -48,10 +55,10 @@ module Module #include "HsVersions.h" import Outputable -import Unique ( Uniquable(..) ) +import Unique import FiniteMap import UniqFM -import PackageConfig ( PackageId, packageIdFS, mainPackageId ) +import PackageConfig import FastString import Binary \end{code}