[commit: ghc] master: Fix Mac OS X build by removing space after ASSERT. (c2142ca)
git at git.haskell.org
git at git.haskell.org
Thu Oct 20 20:07:03 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/c2142ca6707ca0b8b1ea96b8cfa954b20eab717c/ghc
>---------------------------------------------------------------
commit c2142ca6707ca0b8b1ea96b8cfa954b20eab717c
Author: Edward Z. Yang <ezyang at cs.stanford.edu>
Date: Thu Oct 20 13:06:51 2016 -0700
Fix Mac OS X build by removing space after ASSERT.
Signed-off-by: Edward Z. Yang <ezyang at cs.stanford.edu>
>---------------------------------------------------------------
c2142ca6707ca0b8b1ea96b8cfa954b20eab717c
compiler/typecheck/TcRnDriver.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler/typecheck/TcRnDriver.hs b/compiler/typecheck/TcRnDriver.hs
index f73c0af..9f94c12 100644
--- a/compiler/typecheck/TcRnDriver.hs
+++ b/compiler/typecheck/TcRnDriver.hs
@@ -983,7 +983,7 @@ checkBootTyCon is_boot tc1 tc2
`andThenCheck`
-- Don't report roles errors unless the type synonym is nullary
checkUnless (not (null tvs)) $
- ASSERT ( null roles2 )
+ ASSERT( null roles2 )
-- If we have something like:
--
-- signature H where
More information about the ghc-commits
mailing list