[commit: ghc] wip/tc-plugins: Fix-up the boot file, to match the declaratoins in the module. (b34a313)
git at git.haskell.org
git at git.haskell.org
Thu Oct 9 23:02:11 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/tc-plugins
Link : http://ghc.haskell.org/trac/ghc/changeset/b34a3138e98d3241bb2fa8269f5eeebb4f1a2d65/ghc
>---------------------------------------------------------------
commit b34a3138e98d3241bb2fa8269f5eeebb4f1a2d65
Author: Iavor S. Diatchki <diatchki at galois.com>
Date: Thu Oct 9 15:36:27 2014 -0700
Fix-up the boot file, to match the declaratoins in the module.
>---------------------------------------------------------------
b34a3138e98d3241bb2fa8269f5eeebb4f1a2d65
compiler/typecheck/TcRnTypes.lhs-boot | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/compiler/typecheck/TcRnTypes.lhs-boot b/compiler/typecheck/TcRnTypes.lhs-boot
index 36c43fc..8a5ee15 100644
--- a/compiler/typecheck/TcRnTypes.lhs-boot
+++ b/compiler/typecheck/TcRnTypes.lhs-boot
@@ -3,9 +3,9 @@ module TcRnTypes where
import IOEnv
-type TcM a = TcRn a
-type TcRn a = TcRnIf TcGblEnv TcLclEnv a
-type TcRnIf a b c = IOEnv (Env a b) c
+type TcM = TcRn
+type TcRn = TcRnIf TcGblEnv TcLclEnv
+type TcRnIf a b = IOEnv (Env a b)
data Env a b
data TcGblEnv
More information about the ghc-commits
mailing list