diff options
author | Alberto Ruiz <aruiz@um.es> | 2011-12-21 20:00:07 +0100 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2011-12-21 20:00:07 +0100 |
commit | 49219343d035992c2942a309a1d5594f4f96a8b1 (patch) | |
tree | f044a46bc80e1b09f0bfb13b7ed6a782c16a6a0b /lib/Numeric/LinearAlgebra | |
parent | e09160be46b10c0e6137ce9b5e1e879e73c88c3a (diff) |
fix CInt constructor warnings
Diffstat (limited to 'lib/Numeric/LinearAlgebra')
-rw-r--r-- | lib/Numeric/LinearAlgebra/LAPACK.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK.hs b/lib/Numeric/LinearAlgebra/LAPACK.hs index 2fac1ee..14e121b 100644 --- a/lib/Numeric/LinearAlgebra/LAPACK.hs +++ b/lib/Numeric/LinearAlgebra/LAPACK.hs | |||
@@ -47,7 +47,7 @@ import Numeric.Conversion | |||
47 | import Numeric.GSL.Vector(vectorMapValR, FunCodeSV(Scale)) | 47 | import Numeric.GSL.Vector(vectorMapValR, FunCodeSV(Scale)) |
48 | 48 | ||
49 | import Foreign.Ptr(nullPtr) | 49 | import Foreign.Ptr(nullPtr) |
50 | import Foreign.C.Types(CInt) | 50 | import Foreign.C.Types(CInt(..)) |
51 | import Control.Monad(when) | 51 | import Control.Monad(when) |
52 | import System.IO.Unsafe(unsafePerformIO) | 52 | import System.IO.Unsafe(unsafePerformIO) |
53 | 53 | ||