diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2019-11-22 20:17:19 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-16 19:31:44 -0500 |
commit | 3e17a866fecebc5f80b4e7da93a73803b86499ca (patch) | |
tree | e43ec9825c4d4a17a0f897c7445584dcdddeec5e /compiler/main | |
parent | 9431f905a1eabcb823b65460560558c08fb55cd9 (diff) | |
download | haskell-3e17a866fecebc5f80b4e7da93a73803b86499ca.tar.gz |
Remove dataConSig
As suggested in #17291
Diffstat (limited to 'compiler/main')
-rw-r--r-- | compiler/main/GHC.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs index 80131c6329..def7065ab6 100644 --- a/compiler/main/GHC.hs +++ b/compiler/main/GHC.hs @@ -196,7 +196,7 @@ module GHC ( -- ** Data constructors DataCon, - dataConSig, dataConType, dataConTyCon, dataConFieldLabels, + dataConType, dataConTyCon, dataConFieldLabels, dataConIsInfix, isVanillaDataCon, dataConUserType, dataConSrcBangs, StrictnessMark(..), isMarkedStrict, |