Skip to content

Commit

Permalink
Disable "missing-kind-signatures" warning
Browse files Browse the repository at this point in the history
This is a new warning in GHC, it wants us to write
```
type ToPairs :: * -> Constraint
```
in addition to
```
class ToPairs t where
```

I am not sure it's a good idea to require it everywhere, so for
now I just disable this warning to let the existing code compile
without warnings.
  • Loading branch information
gromakovsky committed Apr 21, 2022
1 parent ff83098 commit bec88d9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions universum.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ common common-options
if impl(ghc >= 8.10.1)
ghc-options: -Wno-prepositive-qualified-module
-Wno-inferred-safe-imports
if impl(ghc >= 9.2.0)
ghc-options: -Wno-missing-kind-signatures

default-language: Haskell2010

Expand Down

0 comments on commit bec88d9

Please sign in to comment.