diff options
author | Ross Paterson <ross@soi.city.ac.uk> | 2010-09-09 12:55:31 +0000 |
---|---|---|
committer | Ross Paterson <ross@soi.city.ac.uk> | 2010-09-09 12:55:31 +0000 |
commit | f10947d79cdfac8f8b065ef51a10d9c9cf3c19bc (patch) | |
tree | 3daa088ca1d8fc97e8d16be4e0c5ab6f9ea27d4a /compiler/ghci/RtClosureInspect.hs | |
parent | b94d8b0b32b5164dc0dfba5c30008982eeb94b5b (diff) | |
download | haskell-f10947d79cdfac8f8b065ef51a10d9c9cf3c19bc.tar.gz |
avoid Foreign.unsafePerformIO
Diffstat (limited to 'compiler/ghci/RtClosureInspect.hs')
-rw-r--r-- | compiler/ghci/RtClosureInspect.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ghci/RtClosureInspect.hs b/compiler/ghci/RtClosureInspect.hs index e39a0bc7e3..a23d355ecf 100644 --- a/compiler/ghci/RtClosureInspect.hs +++ b/compiler/ghci/RtClosureInspect.hs @@ -75,8 +75,8 @@ import Data.List import qualified Data.Sequence as Seq import Data.Monoid import Data.Sequence (viewl, ViewL(..)) -import Foreign --- import System.IO.Unsafe +import Foreign hiding (unsafePerformIO) +import System.IO.Unsafe --------------------------------------------- -- * A representation of semi evaluated Terms |