diff options
author | Max Bolingbroke <batterseapower@hotmail.com> | 2011-09-12 22:28:28 +0100 |
---|---|---|
committer | Max Bolingbroke <batterseapower@hotmail.com> | 2011-09-27 14:55:21 +0100 |
commit | 006e0c13d7885cc446b6d58aa256a3574d4349e8 (patch) | |
tree | 573af876a346e783f11790d275e3139e6f40ce1d /src/Main.hs | |
parent | ebb07175062cf5122f3c49fa025163a9d6392e63 (diff) |
Follow changes to BinIface Name serialization
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index b49fc6e4..6e029b99 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -60,6 +60,8 @@ import DynFlags hiding (flags, verbosity) import Panic (panic, handleGhcException) import Module +import Control.Monad.Fix (MonadFix) + -------------------------------------------------------------------------------- -- * Exception handling @@ -251,7 +253,7 @@ render flags ifaces installedIfaces srcMap = do ------------------------------------------------------------------------------- -readInterfaceFiles :: MonadIO m => +readInterfaceFiles :: (MonadFix m, MonadIO m) => NameCacheAccessor m -> [(DocPaths, FilePath)] -> m [(DocPaths, InterfaceFile)] |