Don't import FastString in HsVersions.h
[ghc-hetmet.git] / compiler / basicTypes / VarSet.lhs
index 1bef89a..d7e8567 100644 (file)
@@ -4,13 +4,6 @@
 %
 
 \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 VarSet (
        VarSet, IdSet, TyVarSet,
        emptyVarSet, unitVarSet, mkVarSet,
@@ -29,7 +22,6 @@ module VarSet (
 import Var
 import Unique
 import UniqSet
-import UniqFM
 \end{code}
 
 %************************************************************************