File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11# effectful-th-1.0.0.2 (2024-??-??)
22* Drop support for GHC 8.8.
3+ * ` makeEffect ` no longer generates ` Wunused-type-patterns ` warning ([ #200 ] ( https://github.com/haskell-effectful/effectful/pull/200 ) ).
34
45# effectful-th-1.0.0.1 (2023-01-13)
56* Depend on ` effectful-core ` , not ` effectful ` .
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ makeEffectImpl makeSig effName = do
7676 checkRequiredExtensions
7777 info <- reifyDatatype effName
7878 dispatch <- do
79- e <- getEff (ConT $ datatypeName info) (datatypeInstTypes info)
79+ e <- getEff (ConT $ datatypeName info) (const WildCardT <$> datatypeInstTypes info)
8080 let dispatchE = ConT ''DispatchOf `AppT ` e
8181 dynamic = PromotedT 'Dynamic
8282 pure . TySynInstD $ TySynEqn Nothing dispatchE dynamic
You can’t perform that action at this time.
0 commit comments