Tweak an import
authorIan Lynagh <igloo@earth.li>
Wed, 6 Aug 2008 00:04:40 +0000 (00:04 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 6 Aug 2008 00:04:40 +0000 (00:04 +0000)
Unsafe/Coerce.hs

index 9b1e360..516d7e0 100644 (file)
@@ -28,7 +28,7 @@
 module Unsafe.Coerce (unsafeCoerce) where
 
 #if defined(__GLASGOW_HASKELL__)
-import GHC.Base (unsafeCoerce#)
+import GHC.Prim (unsafeCoerce#)
 unsafeCoerce :: a -> b
 unsafeCoerce = unsafeCoerce#
 #endif