Skip to content
Snippets Groups Projects
Commit 9d56ddc6 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Fix some "warn-unused-do-bind" warnings where we want to ignore the value

parent 5f2b610a
No related branches found
No related tags found
No related merge requests found
......@@ -364,7 +364,7 @@ replaceDiffArray2 :: (MArray a e IO, Ix i)
-> [(Int, e)]
-> IO (IOToDiffArray a i e)
arr `replaceDiffArray2` ies = do
mapM_ (\(a,b) -> do evaluate a; evaluate b) ies
mapM_ (\(a,b) -> evaluate a >> evaluate b) ies
arr `replaceDiffArray` ies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment