diff options
| author | David Terei <davidterei@gmail.com> | 2011-05-16 14:57:46 -0700 |
|---|---|---|
| committer | David Terei <davidterei@gmail.com> | 2011-06-18 01:06:34 -0700 |
| commit | a61aedc730e68a1b0c166b81a65a8ea575e8094b (patch) | |
| tree | 85e0237044e1ec4bc29e1bfb80076055035eb6f7 /libraries/base/Data/STRef/Lazy.hs | |
| parent | 191656199189e584e66dda194b7f772694388102 (diff) | |
| download | haskell-a61aedc730e68a1b0c166b81a65a8ea575e8094b.tar.gz | |
SafeHaskell: Added SafeHaskell to base
Diffstat (limited to 'libraries/base/Data/STRef/Lazy.hs')
| -rw-r--r-- | libraries/base/Data/STRef/Lazy.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/base/Data/STRef/Lazy.hs b/libraries/base/Data/STRef/Lazy.hs index 288343ee4c..ccc19051de 100644 --- a/libraries/base/Data/STRef/Lazy.hs +++ b/libraries/base/Data/STRef/Lazy.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Safe #-} ----------------------------------------------------------------------------- -- | -- Module : Data.STRef.Lazy @@ -20,7 +21,7 @@ module Data.STRef.Lazy ( modifySTRef -- :: STRef s a -> (a -> a) -> ST s () ) where -import Control.Monad.ST.Lazy +import Control.Monad.ST.Lazy.Safe import qualified Data.STRef as ST import Prelude |
