Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/831ea49474bf28f1d33428d09bc8912827be265e >--------------------------------------------------------------- commit 831ea49474bf28f1d33428d09bc8912827be265e Author: Simon Peyton Jones <[email protected]> Date: Wed May 4 22:35:27 2011 +0100 Make import conditional on DEBUG to avoid unused-import warnings >--------------------------------------------------------------- compiler/typecheck/TcSMonad.lhs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/typecheck/TcSMonad.lhs b/compiler/typecheck/TcSMonad.lhs index 414c63a..63b3bb8 100644 --- a/compiler/typecheck/TcSMonad.lhs +++ b/compiler/typecheck/TcSMonad.lhs @@ -101,13 +101,13 @@ import FastString import HsBinds -- for TcEvBinds stuff import Id - -import StaticFlags( opt_PprStyle_Debug ) import TcRnTypes +import Data.IORef + #ifdef DEBUG +import StaticFlags( opt_PprStyle_Debug ) import Control.Monad( when ) #endif -import Data.IORef \end{code} _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
