Skip to content

Commit

Permalink
Bump containers dependency for ghc-7.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnLato committed Oct 26, 2010
1 parent bf541d2 commit a533f78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions ListLike.cabal
@@ -1,11 +1,11 @@
Name: ListLike
Version: 1.0.2
Version: 1.1.0
License: LGPL
Maintainer: John Goerzen <jgoerzen@complete.org>
Author: John Goerzen
Copyright: Copyright (c) 2007-2008 John Goerzen
license-file: COPYRIGHT
extra-source-files: COPYING
extra-source-files: COPYING, README
Category: Generics
Build-Type: Simple
homepage: http://software.complete.org/listlike
Expand All @@ -30,11 +30,11 @@ Exposed-Modules: Data.ListLike,
Data.ListLike.String,
Data.ListLike.Utils
-- Other-Modules: Data.ConfigFile.Lexer
Build-Depends: base >= 3 && < 5
,mtl
,containers
,bytestring
,array
Build-Depends: base >= 3 && < 5
,mtl >= 1.1.0 && < 1.2
,containers >= 0.3 && < 0.5
,bytestring >= 0.9.1 && < 0.10
,array >= 0.3 && < 0.4

Executable: runtests
Buildable: False
Expand Down
2 changes: 1 addition & 1 deletion src/Data/ListLike/Instances.hs
Expand Up @@ -304,7 +304,7 @@ instance StringLike BSL.ByteString where
-- Map

instance (Ord key) => FoldableLL (Map.Map key val) (key, val) where
foldr f start m = Map.foldWithKey func start m
foldr f start m = Map.foldrWithKey func start m
where func k v accum = f (k, v) accum
foldl f start m = L.foldl f start (Map.toList m)

Expand Down

0 comments on commit a533f78

Please sign in to comment.