This repository was archived by the owner on Aug 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +10
-1
lines changed Expand file tree Collapse file tree 8 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ library
70
70
-Wredundant-constraints
71
71
-Wnoncanonical-monad-instances
72
72
-Wmissing-home-modules
73
+ -Wincomplete-uni-patterns
74
+ -Wincomplete-record-updates
73
75
74
76
75
77
exposed-modules :
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE FlexibleContexts #-}
2
2
{-# LANGUAGE TypeFamilies #-}
3
+ {-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
3
4
-----------------------------------------------------------------------------
4
5
-- |
5
6
-- Module : Haddock.Backends.Hoogle
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE OverloadedStrings #-}
2
2
{-# OPTIONS_GHC -fno-warn-orphans #-}
3
+ {-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
3
4
module Haddock.Backends.Hyperlinker.Parser (parse ) where
4
5
5
6
import Control.Applicative ( Alternative (.. ) )
Original file line number Diff line number Diff line change 2
2
{-# LANGUAGE TypeFamilies #-}
3
3
{-# LANGUAGE FlexibleContexts #-}
4
4
{-# OPTIONS_GHC -fno-warn-orphans #-}
5
+ {-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
5
6
{-# OPTIONS_HADDOCK hide #-}
6
7
-----------------------------------------------------------------------------
7
8
-- |
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE MagicHash, BangPatterns #-}
2
2
{-# LANGUAGE TypeFamilies #-}
3
+ {-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
4
+ {-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
3
5
-----------------------------------------------------------------------------
4
6
-- |
5
7
-- Module : Haddock.Interface.AttachInstances
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE RecordWildCards #-}
2
2
{-# LANGUAGE TypeFamilies #-}
3
+ {-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
3
4
----------------------------------------------------------------------------
4
5
-- |
5
6
-- Module : Haddock.Interface.Rename
Original file line number Diff line number Diff line change 3
3
{-# LANGUAGE ScopedTypeVariables #-}
4
4
{-# LANGUAGE TypeApplications #-}
5
5
{-# LANGUAGE RecordWildCards #-}
6
+ {-# OPTIONS_GHC -Wno-incomplete-record-updates #-}
6
7
7
8
module Haddock.Interface.Specialize
8
9
( specializeInstHead
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ executable haddock
62
62
default-language : Haskell2010
63
63
main-is : Main.hs
64
64
hs-source-dirs : driver
65
- ghc-options : -funbox-strict-fields -Wall -O2 -threaded
65
+ ghc-options : -funbox-strict-fields -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates - O2 -threaded
66
66
67
67
-- haddock typically only supports a single GHC major version
68
68
build-depends :
You can’t perform that action at this time.
0 commit comments