From 605eff7b9aa68483301b67b0913f9be51a7a6bc6 Mon Sep 17 00:00:00 2001 From: David Spies Date: Sat, 27 Jan 2018 12:12:06 -0800 Subject: [PATCH] https://github.com/DanielG/ghc-mod/issues/924 resolved. Turn on -Werror --- cipola.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cipola.cabal b/cipola.cabal index 2451c53..079598e 100644 --- a/cipola.cabal +++ b/cipola.cabal @@ -78,7 +78,7 @@ library -- Base language which the package is written in. default-language: Haskell2010 - ghc-options: -Wall + ghc-options: -Wall -Werror test-suite cipola-test type: exitcode-stdio-1.0 @@ -103,13 +103,13 @@ test-suite cipola-test Test.PrimeVectorSpec Test.PrimeVector.Util default-language: Haskell2010 - ghc-options: -Wall + ghc-options: -Wall -Werror executable factorize main-is: Main.hs hs-source-dirs: factorize - ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall + ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror build-depends: base , cipola