diff options
author | Ian Lynagh <igloo@earth.li> | 2010-12-15 20:10:06 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-12-15 20:10:06 +0000 |
commit | edc0bafd3fcd01b85a2e8894e5dfe149eb0e0857 (patch) | |
tree | 208bde3ea2b0de6ec9ed17a26e4b5990b92c1006 /compiler/utils/Binary.hs | |
parent | 4f37664780b85725ba3552b7de11c0e5e79d3fee (diff) | |
download | haskell-edc0bafd3fcd01b85a2e8894e5dfe149eb0e0857.tar.gz |
Remove code that is dead now that we need >= 6.12 to build
Diffstat (limited to 'compiler/utils/Binary.hs')
-rw-r--r-- | compiler/utils/Binary.hs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/utils/Binary.hs b/compiler/utils/Binary.hs index 249480afee..3785957966 100644 --- a/compiler/utils/Binary.hs +++ b/compiler/utils/Binary.hs @@ -81,12 +81,7 @@ import System.IO.Error ( mkIOError, eofErrorType ) import GHC.Real ( Ratio(..) ) import GHC.Exts import GHC.Word ( Word8(..) ) - -#if __GLASGOW_HASKELL__ >= 611 import GHC.IO ( IO(..) ) -#else -import GHC.IOBase ( IO(..) ) -#endif type BinArray = ForeignPtr Word8 |