diff options
author | Alberto Ruiz <aruiz@um.es> | 2009-12-22 09:04:12 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2009-12-22 09:04:12 +0000 |
commit | 107478b2288b0904159599be94089230c7cd3edf (patch) | |
tree | 14834baa61a038efe0e81ed00d45071ba47f2789 /lib/Data/Packed/Internal | |
parent | ed8f45f7316569bfeacdd2848017d93c5cfdd261 (diff) |
fix ghc-6.12 warnings
Diffstat (limited to 'lib/Data/Packed/Internal')
-rw-r--r-- | lib/Data/Packed/Internal/Vector.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Data/Packed/Internal/Vector.hs b/lib/Data/Packed/Internal/Vector.hs index 009297a..bc623de 100644 --- a/lib/Data/Packed/Internal/Vector.hs +++ b/lib/Data/Packed/Internal/Vector.hs | |||
@@ -41,7 +41,9 @@ import Foreign.ForeignPtr (mallocForeignPtrBytes) | |||
41 | #endif | 41 | #endif |
42 | 42 | ||
43 | import GHC.Base | 43 | import GHC.Base |
44 | #if __GLASGOW_HASKELL__ < 612 | ||
44 | import GHC.IOBase | 45 | import GHC.IOBase |
46 | #endif | ||
45 | 47 | ||
46 | -- | A one-dimensional array of objects stored in a contiguous memory block. | 48 | -- | A one-dimensional array of objects stored in a contiguous memory block. |
47 | data Vector t = | 49 | data Vector t = |