We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eedcf5e commit 9e20a89Copy full SHA for 9e20a89
Data/Vector/Storable/Mutable.hs
@@ -197,7 +197,7 @@ storableSet (MVector n fp) x
197
storableSetAsPrim
198
:: forall a b . (Storable a, Prim b) => Int -> ForeignPtr a -> a -> b -> IO ()
199
{-# INLINE [0] storableSetAsPrim #-}
200
-storableSetAsPrim n fp x y = withForeignPtr fp $ \ ptr -> do
+storableSetAsPrim n fp x _y = withForeignPtr fp $ \ ptr -> do
201
poke ptr x
202
-- we dont equate storable and prim reps, so we need to write to a slot
203
-- in storable
0 commit comments