fft 0.1.8.5 → 0.1.8.6
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~QuickCheckPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
Files
- fft.cabal +3/−3
- src/Math/FFT/Base.hs +1/−1
fft.cabal view
@@ -1,5 +1,5 @@ name: fft-version: 0.1.8.5+version: 0.1.8.6 synopsis: Bindings to the FFTW library. description: Bindings to the FFTW library.@@ -20,7 +20,7 @@ flag base4 source-repository this- tag: 0.1.8.5+ tag: 0.1.8.6 type: darcs location: http://hub.darcs.net/thielema/fft/ @@ -62,7 +62,7 @@ fft, carray, storable-complex,- QuickCheck >=2.5 && <2.10,+ QuickCheck >=2.5 && <3, base ghc-options: -Wall main-is: tests.hs
src/Math/FFT/Base.hs view
@@ -188,7 +188,7 @@ data DFT = CC | RC | CR | CRO | RR deriving (Eq, Show) --- | Verify that a plan is valid. Thows an exception if not.+-- | Verify that a plan is valid. Throws an exception if not. check :: Plan -> IO () check p = when (p == nullPtr) . ioError $ userError "invalid plan"