diff options
author | tomjaguarpaw <tom-github.com@jaguarpaw.co.uk> | 2020-12-08 17:00:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 18:00:04 +0100 |
commit | 96a60e218b35df611ee56c4bdd8408ec4375e6ca (patch) | |
tree | 8fba377fb25f7eba62a90935bf00235c5eb4a040 /haddock.cabal | |
parent | 7240b69e3444e40546c7a17855eed2e5ab8a0816 (diff) |
Enable two warnings (#1245)
because they will be soon be added to -Wall.
See https://gitlab.haskell.org/ghc/ghc/-/issues/15656
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock.cabal b/haddock.cabal index 1d6ad180..0bf99950 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -62,7 +62,7 @@ executable haddock default-language: Haskell2010 main-is: Main.hs hs-source-dirs: driver - ghc-options: -funbox-strict-fields -Wall -O2 -threaded + ghc-options: -funbox-strict-fields -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -O2 -threaded -- haddock typically only supports a single GHC major version build-depends: |