diff options
author | Ian Lynagh <igloo@earth.li> | 2011-10-01 01:34:06 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-10-01 01:34:06 +0100 |
commit | 8b2ee333020aeb9e639cd1772e1dca3b4b4ef3d2 (patch) | |
tree | 8c5eabb23c94b9204bb4691a015af4480b79b4d8 /src/Haddock/Interface/Create.hs | |
parent | 813a8f79109cf854f9515ec55289d4a5efc1388d (diff) |
Follow changes to ForeignImport/ForeignExport in GHC
Diffstat (limited to 'src/Haddock/Interface/Create.hs')
-rw-r--r-- | src/Haddock/Interface/Create.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Interface/Create.hs b/src/Haddock/Interface/Create.hs index 860a0044..057fceb7 100644 --- a/src/Haddock/Interface/Create.hs +++ b/src/Haddock/Interface/Create.hs @@ -263,7 +263,7 @@ declsFromClass class_ = docs ++ defs ++ sigs ++ ats declNames :: HsDecl a -> [a] declNames (TyClD d) = [tcdName d] -declNames (ForD (ForeignImport n _ _)) = [unLoc n] +declNames (ForD (ForeignImport n _ _ _)) = [unLoc n] -- we have normal sigs only (since they are taken from ValBindsOut) declNames (SigD sig) = sigNameNoLoc sig declNames _ = error "unexpected argument to declNames" |