summaryrefslogtreecommitdiff
path: root/packages/base/src/Internal/Devel.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-07-01 08:46:05 +0200
committerAlberto Ruiz <aruiz@um.es>2015-07-01 08:46:05 +0200
commit0bdc40ca822e1b80089080da3fe03d0e31e7d927 (patch)
tree200795ba8e6123fcceb7ab5e54cb2f097ae10279 /packages/base/src/Internal/Devel.hs
parentf1ee7a4ff3870a72f73d99ac923f9230f3deecf5 (diff)
minor fix
Diffstat (limited to 'packages/base/src/Internal/Devel.hs')
-rw-r--r--packages/base/src/Internal/Devel.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/base/src/Internal/Devel.hs b/packages/base/src/Internal/Devel.hs
index 710d626..92b5604 100644
--- a/packages/base/src/Internal/Devel.hs
+++ b/packages/base/src/Internal/Devel.hs
@@ -80,7 +80,6 @@ class TransArray c
80 where 80 where
81 type Trans c b 81 type Trans c b
82 type TransRaw c b 82 type TransRaw c b
83 type Elem c
84 apply :: (Trans c b) -> c -> b 83 apply :: (Trans c b) -> c -> b
85 applyRaw :: (TransRaw c b) -> c -> b 84 applyRaw :: (TransRaw c b) -> c -> b
86 infixl 1 `apply`, `applyRaw` 85 infixl 1 `apply`, `applyRaw`
@@ -89,7 +88,6 @@ instance Storable t => TransArray (Vector t)
89 where 88 where
90 type Trans (Vector t) b = CInt -> Ptr t -> b 89 type Trans (Vector t) b = CInt -> Ptr t -> b
91 type TransRaw (Vector t) b = CInt -> Ptr t -> b 90 type TransRaw (Vector t) b = CInt -> Ptr t -> b
92 type Elem (Vector t) = t
93 apply = avec 91 apply = avec
94 {-# INLINE apply #-} 92 {-# INLINE apply #-}
95 applyRaw = avec 93 applyRaw = avec