Remove -Werror from compilation

To upload to hackage, -Wall -Werror cannot both be set. This can be
achieved by installing with stack's `--pedantic` flag.
This commit is contained in:
Joshua Clayton 2016-06-24 08:17:55 -04:00
parent 11ff583d3c
commit 5d6ec8d611
No known key found for this signature in database
GPG Key ID: 5B6558F77E9A8118

View File

@ -77,13 +77,13 @@ library
, vector
, mtl
, transformers
ghc-options: -Wall -Werror -O
ghc-options: -Wall -O
default-language: Haskell2010
executable unused
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror -O
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O
build-depends: base
, unused
, optparse-applicative