From bec88d999c66f59fc5f6d19ee18f1ae31c745d07 Mon Sep 17 00:00:00 2001 From: Ivan Gromakovskii Date: Thu, 31 Mar 2022 12:20:33 +0300 Subject: [PATCH] Disable "missing-kind-signatures" warning 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. --- universum.cabal | 2 ++ 1 file changed, 2 insertions(+) diff --git a/universum.cabal b/universum.cabal index e2173bf..117cda6 100644 --- a/universum.cabal +++ b/universum.cabal @@ -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