diff options
author | Fendor <power.walross@gmail.com> | 2021-02-03 19:10:20 +0100 |
---|---|---|
committer | Fendor <power.walross@gmail.com> | 2021-02-09 20:06:15 +0100 |
commit | ac5ec36f9eb9b697be6f4ceb63041a0abdcfd6d0 (patch) | |
tree | b5bf532e41a815bd4086dc7e96389f8d371d4de3 /haddock-api/src/Haddock | |
parent | d1b7f181b60ba3ac191183f1512e66793d28ac08 (diff) |
Add UnitId to Target record
Diffstat (limited to 'haddock-api/src/Haddock')
-rw-r--r-- | haddock-api/src/Haddock/Interface.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/src/Haddock/Interface.hs b/haddock-api/src/Haddock/Interface.hs index 16643d0e..7cc76953 100644 --- a/haddock-api/src/Haddock/Interface.hs +++ b/haddock-api/src/Haddock/Interface.hs @@ -157,7 +157,7 @@ createIfaces verbosity modules flags instIfaceMap = do -- alive to be able to find all the instances. modifySession installHaddockPlugin - targets <- mapM (\filePath -> guessTarget filePath Nothing) modules + targets <- mapM (\filePath -> guessTarget filePath Nothing Nothing) modules setTargets targets loadOk <- withTimingM "load" (const ()) $ |