diff options
author | Mathieu Boespflug <m@tweag.io> | 2018-03-25 12:25:51 +0200 |
---|---|---|
committer | Mathieu Boespflug <m@tweag.io> | 2018-03-25 12:25:51 +0200 |
commit | 6bfcf9314af77e83886dba9ddf7d651544dc92a7 (patch) | |
tree | 479ff9415ba30fda5a59c962e95d2ed56fe4b15d /packages | |
parent | 72c116cb338b91ba59af048b0363cb8f113f8535 (diff) |
Remove -Wall from source files.
This should be turned on a side effect of passing --pedantic to the
build tool. If that flag is not passed, then avoid creating extra
noise for downstream users that are building the library.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/sundials/src/Main.hs | 2 | ||||
-rw-r--r-- | packages/sundials/src/Numeric/Sundials/Arkode/ODE.hs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/packages/sundials/src/Main.hs b/packages/sundials/src/Main.hs index 44426f6..d1f6755 100644 --- a/packages/sundials/src/Main.hs +++ b/packages/sundials/src/Main.hs | |||
@@ -1,4 +1,4 @@ | |||
1 | {-# OPTIONS_GHC -Wall #-} | 1 | module Main where |
2 | 2 | ||
3 | import Numeric.Sundials.Arkode.ODE | 3 | import Numeric.Sundials.Arkode.ODE |
4 | import Numeric.LinearAlgebra | 4 | import Numeric.LinearAlgebra |
diff --git a/packages/sundials/src/Numeric/Sundials/Arkode/ODE.hs b/packages/sundials/src/Numeric/Sundials/Arkode/ODE.hs index 7b0cb0d..6d9a1b2 100644 --- a/packages/sundials/src/Numeric/Sundials/Arkode/ODE.hs +++ b/packages/sundials/src/Numeric/Sundials/Arkode/ODE.hs | |||
@@ -1,5 +1,3 @@ | |||
1 | {-# OPTIONS_GHC -Wall #-} | ||
2 | |||
3 | {-# LANGUAGE MultiWayIf #-} | 1 | {-# LANGUAGE MultiWayIf #-} |
4 | {-# LANGUAGE OverloadedStrings #-} | 2 | {-# LANGUAGE OverloadedStrings #-} |
5 | {-# LANGUAGE QuasiQuotes #-} | 3 | {-# LANGUAGE QuasiQuotes #-} |