diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
commit | 262c142b90c94ca1aa577c950a6ceae1f255e2d6 (patch) | |
tree | e1de9880b055869186693df6bb93928c1272f944 /compiler/codeGen/CgMonad.lhs | |
parent | 00c8fa011bed11d95016c13a75e93bc94a4f6aa5 (diff) | |
download | haskell-262c142b90c94ca1aa577c950a6ceae1f255e2d6.tar.gz |
Remove mapAccumL, mapAccumR, mapAccumB
mapAccumL and mapAccumR are in Data.List now.
mapAccumB is unused.
Diffstat (limited to 'compiler/codeGen/CgMonad.lhs')
-rw-r--r-- | compiler/codeGen/CgMonad.lhs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/codeGen/CgMonad.lhs b/compiler/codeGen/CgMonad.lhs index 688591292c..8723e46d2a 100644 --- a/compiler/codeGen/CgMonad.lhs +++ b/compiler/codeGen/CgMonad.lhs @@ -79,6 +79,7 @@ import FastString import Outputable import Control.Monad +import Data.List infixr 9 `thenC` -- Right-associative! infixr 9 `thenFC` |