summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Palka <patrick@parcs.ath.cx>2013-11-08 17:15:26 -0500
committerPatrick Palka <patrick@parcs.ath.cx>2013-11-12 21:55:45 -0500
commit9156be566e902d6997e09208826846c441cd6f41 (patch)
treed3b65bc1e2caad42427a4a3612e6cebe02d408f5
parentb2fa2d41032882d3cf67be083489cbcbf9e4ec07 (diff)
downloadhaskell-9156be566e902d6997e09208826846c441cd6f41.tar.gz
Remove old workaround for containers <= 0.3
-rw-r--r--compiler/utils/FiniteMap.lhs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/utils/FiniteMap.lhs b/compiler/utils/FiniteMap.lhs
index 94d1eef94e..b52f28c324 100644
--- a/compiler/utils/FiniteMap.lhs
+++ b/compiler/utils/FiniteMap.lhs
@@ -27,10 +27,6 @@ deleteList ks m = foldl (flip Map.delete) m ks
foldRight :: (elt -> a -> a) -> a -> Map key elt -> a
foldRight = Map.fold
foldRightWithKey :: (key -> elt -> a -> a) -> a -> Map key elt -> a
-#if (MIN_VERSION_containers(0,4,0))
foldRightWithKey = Map.foldrWithKey
-#else
-foldRightWithKey = Map.foldWithKey
-#endif
\end{code}