summarylogtreecommitdiffstats
path: root/001-fix_ghc_7.10.patch
diff options
context:
space:
mode:
Diffstat (limited to '001-fix_ghc_7.10.patch')
-rw-r--r--001-fix_ghc_7.10.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/001-fix_ghc_7.10.patch b/001-fix_ghc_7.10.patch
deleted file mode 100644
index 8361c3b2ad53..000000000000
--- a/001-fix_ghc_7.10.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- src/VMMonad.hs.orig 2015-05-03 02:22:24.504191179 +0200
-+++ src/VMMonad.hs 2015-05-03 02:23:48.101173777 +0200
-@@ -27,6 +27,9 @@
- import qualified Level (initialize, lfetch, lstore)
- import qualified Memory (initialize, mfetch, mstore, mstoren, mreserve)
-
-+import Control.Applicative (Applicative(..))
-+import Control.Monad (liftM, ap)
-+
- data State =
- State { reg :: Registry,
- mem :: Memory,
-@@ -38,6 +41,13 @@
- profileHandle :: Maybe Handle,
- profile :: ! (Map String Int) }
-
-+instance Functor Mnd where
-+ fmap = liftM
-+
-+instance Applicative Mnd where
-+ pure = return
-+ (<*>) = ap
-+
- newtype Mnd a =
- Mnd (IORef State -> IO a)
-