diff options
author | David Terei <davidterei@gmail.com> | 2011-06-14 14:04:11 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-06-17 20:40:34 -0700 |
commit | 1d704e17caef8156a3d4c4b764737ede85884eb8 (patch) | |
tree | fdc5c2b7023d16b4aa111739c314be37c5de8e45 /compiler/utils/Encoding.hs | |
parent | 90bab6b82256b5dc0562e46a091b4dcfce18f804 (diff) | |
download | haskell-1d704e17caef8156a3d4c4b764737ede85884eb8.tar.gz |
SafeHaskell: Make base GHC.* modules untrusted
Diffstat (limited to 'compiler/utils/Encoding.hs')
-rw-r--r-- | compiler/utils/Encoding.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/utils/Encoding.hs b/compiler/utils/Encoding.hs index 4351538702..6467377a1a 100644 --- a/compiler/utils/Encoding.hs +++ b/compiler/utils/Encoding.hs @@ -32,11 +32,7 @@ module Encoding ( import Foreign import Data.Char import Numeric -#if __GLASGOW_HASKELL__ >= 701 -import GHC.Ptr.Unsafe ( Ptr(..) ) -#else -import GHC.Ptr ( Ptr(..) ) -#endif +import GHC.Ptr ( Ptr(..) ) import GHC.Base -- ----------------------------------------------------------------------------- |