[commit: packages/containers] master: Add forgotten foldMap to the imports. (4a6bbb1)
git at git.haskell.org
git at git.haskell.org
Sun Dec 20 16:23:26 UTC 2015
Repository : ssh://git@git.haskell.org/containers
On branch : master
Link : http://git.haskell.org/packages/containers.git/commitdiff/4a6bbb14e6d982825235a521510afd55c565cc59
>---------------------------------------------------------------
commit 4a6bbb14e6d982825235a521510afd55c565cc59
Author: Milan Straka <fox at ucw.cz>
Date: Tue Dec 16 14:32:23 2014 +0100
Add forgotten foldMap to the imports.
The foldMap is in Prelude on base 4.8, that is why I missed it.
>---------------------------------------------------------------
4a6bbb14e6d982825235a521510afd55c565cc59
tests/seq-properties.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/seq-properties.hs b/tests/seq-properties.hs
index 4cf0876..4f4f468 100644
--- a/tests/seq-properties.hs
+++ b/tests/seq-properties.hs
@@ -3,7 +3,7 @@ import Data.Sequence -- needs to be compiled with -DTESTING for use here
import Control.Applicative (Applicative(..))
import Control.Arrow ((***))
import Data.Array (listArray)
-import Data.Foldable (Foldable(foldl, foldl1, foldr, foldr1), toList, all, sum)
+import Data.Foldable (Foldable(foldl, foldl1, foldr, foldr1, foldMap), toList, all, sum)
import Data.Functor ((<$>), (<$))
import Data.Maybe
import Data.Monoid (Monoid(..))
More information about the ghc-commits
mailing list