Specify -fno-warn-redundant-constraints in the cabal file instead of the source files
Getty Ritter
6 years ago
42 | 42 |
, Data.Ini.Config.Bidir
|
43 | 43 |
, Data.Ini.Config.Raw
|
44 | 44 |
ghc-options: -Wall
|
| 45 |
if impl(ghc > 8.0)
|
| 46 |
ghc-options: -fno-warn-redundant-constraints
|
45 | 47 |
build-depends: base >=4.8 && <5
|
46 | 48 |
, containers >=0.5 && <0.6
|
47 | 49 |
, text >=1.2.2 && <1.3
|
1 | |
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
|
2 | 1 |
{-|
|
3 | 2 |
Module : Data.Ini.Config.Bidir
|
4 | 3 |
Copyright : (c) Getty Ritter, 2017
|
1 | |
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
|
2 | 1 |
{-|
|
3 | 2 |
Module : Data.Ini.Config
|
4 | 3 |
Copyright : (c) Getty Ritter, 2017
|
|
97 | 96 |
, listWithSeparator
|
98 | 97 |
) where
|
99 | 98 |
|
100 | |
import Control.Applicative (Applicative(..), Alternative(..))
|
| 99 |
import Control.Applicative (Alternative(..))
|
101 | 100 |
import Control.Monad.Trans.Except
|
102 | 101 |
import Data.Ini.Config.Raw
|
103 | 102 |
import Data.Sequence (Seq)
|