summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2011-09-02 12:05:54 +0000
committerAlberto Ruiz <aruiz@um.es>2011-09-02 12:05:54 +0000
commit05f4f9703162317f3d2610a9136a853eea7ab417 (patch)
tree50147e516830d7867c87873121dfe002d4b12254 /lib
parent4e6c686dd496e9b7bdd209da3e8fbd3ac47de65a (diff)
thanks & bump version
Diffstat (limited to 'lib')
-rw-r--r--lib/Data/Packed/Internal/Vector.hs2
-rw-r--r--lib/Numeric/Vector.hs1
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/Data/Packed/Internal/Vector.hs b/lib/Data/Packed/Internal/Vector.hs
index e5a7782..43b3fd8 100644
--- a/lib/Data/Packed/Internal/Vector.hs
+++ b/lib/Data/Packed/Internal/Vector.hs
@@ -60,6 +60,8 @@ import Data.Vector.Storable(Vector,
60 unsafeToForeignPtr, 60 unsafeToForeignPtr,
61 unsafeFromForeignPtr, 61 unsafeFromForeignPtr,
62 unsafeWith) 62 unsafeWith)
63#else
64import Foreign.ForeignPtr(withForeignPtr)
63#endif 65#endif
64 66
65#ifdef VECTOR 67#ifdef VECTOR
diff --git a/lib/Numeric/Vector.hs b/lib/Numeric/Vector.hs
index 01637d5..5b72951 100644
--- a/lib/Numeric/Vector.hs
+++ b/lib/Numeric/Vector.hs
@@ -41,6 +41,7 @@ instance (Show a, Storable a) => (Show (Vector a)) where
41 41
42#ifdef VECTOR 42#ifdef VECTOR
43 43
44#if !MIN_VERSION_vector(0,8,0)
44instance (Element a, Read a) => Read (Vector a) where 45instance (Element a, Read a) => Read (Vector a) where
45 readsPrec _ s = [(fromList . read $ listnums, rest)] 46 readsPrec _ s = [(fromList . read $ listnums, rest)]
46 where (thing,trest) = breakAt ']' s 47 where (thing,trest) = breakAt ']' s