diff options
author | Alberto Ruiz <aruiz@um.es> | 2017-12-26 14:05:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-26 14:05:35 +0100 |
commit | 0d4018b09f1d38bbc05fdc0d8197d0f8a6ce5571 (patch) | |
tree | f7aae740fa7129c4641cf05a9e00260e48cd92bb /packages/gsl/src/Numeric/GSL/Fitting.hs | |
parent | 87c7682bbfd17308749d5e9568f1ffa25390ce79 (diff) | |
parent | e83e2023da77ecaa9aaba15bc9bd48757f73b3a9 (diff) |
Merge pull request #245 from konn/ghc84
Workaround for GHC-8.4.x
Diffstat (limited to 'packages/gsl/src/Numeric/GSL/Fitting.hs')
-rw-r--r-- | packages/gsl/src/Numeric/GSL/Fitting.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/gsl/src/Numeric/GSL/Fitting.hs b/packages/gsl/src/Numeric/GSL/Fitting.hs index 9a2f665..8f2eae3 100644 --- a/packages/gsl/src/Numeric/GSL/Fitting.hs +++ b/packages/gsl/src/Numeric/GSL/Fitting.hs | |||
@@ -1,3 +1,4 @@ | |||
1 | {-# LANGUAGE CPP #-} | ||
1 | {-# LANGUAGE FlexibleContexts #-} | 2 | {-# LANGUAGE FlexibleContexts #-} |
2 | 3 | ||
3 | {- | | 4 | {- | |
@@ -58,6 +59,9 @@ import Numeric.GSL.Internal | |||
58 | import Foreign.Ptr(FunPtr, freeHaskellFunPtr) | 59 | import Foreign.Ptr(FunPtr, freeHaskellFunPtr) |
59 | import Foreign.C.Types | 60 | import Foreign.C.Types |
60 | import System.IO.Unsafe(unsafePerformIO) | 61 | import System.IO.Unsafe(unsafePerformIO) |
62 | #if MIN_VERSION_base(4,11,0) | ||
63 | import Prelude hiding ((<>)) | ||
64 | #endif | ||
61 | 65 | ||
62 | ------------------------------------------------------------------------- | 66 | ------------------------------------------------------------------------- |
63 | 67 | ||