diff options
author | tomjaguarpaw <tom-github.com@jaguarpaw.co.uk> | 2020-12-10 18:01:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 19:01:41 +0100 |
commit | 7936692badfe38f23ae95b51fb7bd7c2ff7e9bce (patch) | |
tree | c158fbf692f4e7a50cc286a494068d9ebb428b5c /haddock.cabal | |
parent | ef0375d6dc3d786c48067ecd6b84a58130829acd (diff) |
Enable two warnings (#1245) (#1268)
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 424a255b..7f2b5ee5 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -60,7 +60,7 @@ executable haddock default-language: Haskell2010 main-is: Main.hs hs-source-dirs: driver - ghc-options: -funbox-strict-fields -Wall -fwarn-tabs -O2 -threaded + ghc-options: -funbox-strict-fields -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wincomplete-record-updates -O2 -threaded -- haddock typically only supports a single GHC major version build-depends: |