diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-07-27 11:27:31 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-07-27 11:28:03 -0400 |
commit | 612f44f9a582b1f7c8a9ba709651bce83692b60b (patch) | |
tree | 5ee7909fa2da37ebf1762f38a0076c9691ba9a07 /haddock-api/src/Haddock/Interface | |
parent | 2a36ae90b79469608e32926f89233904a529832c (diff) |
eqTyCon_RDR now lives in TysWiredIn
After GHC commit
http://git.haskell.org/ghc.git/commit/f265008fb6f70830e7e92ce563f6d83833cef071
Diffstat (limited to 'haddock-api/src/Haddock/Interface')
-rw-r--r-- | haddock-api/src/Haddock/Interface/Rename.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/src/Haddock/Interface/Rename.hs b/haddock-api/src/Haddock/Interface/Rename.hs index 1c976410..351a39d1 100644 --- a/haddock-api/src/Haddock/Interface/Rename.hs +++ b/haddock-api/src/Haddock/Interface/Rename.hs @@ -23,7 +23,7 @@ import GHC hiding (NoLink) import Name import Outputable ( panic ) import RdrName (RdrName(Exact)) -import PrelNames (eqTyCon_RDR) +import TysWiredIn (eqTyCon_RDR) import Control.Applicative import Control.Monad hiding (mapM) |