Repository : ssh://darcs.haskell.org//srv/darcs/packages/containers On branch : master
http://hackage.haskell.org/trac/ghc/changeset/64d4433d0cb0b444c48a4f1f6b7374144cfbd9f1 >--------------------------------------------------------------- commit 64d4433d0cb0b444c48a4f1f6b7374144cfbd9f1 Author: Milan Straka <[email protected]> Date: Fri Nov 25 15:26:56 2011 +0100 Mark all modules using GHC.Exts as Trustworthy. GHC.Exts has been marked Unsafe in the base. >--------------------------------------------------------------- Data/Map/Base.hs | 2 +- Data/Set.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/Map/Base.hs b/Data/Map/Base.hs index a3c0449..663469e 100644 --- a/Data/Map/Base.hs +++ b/Data/Map/Base.hs @@ -3,7 +3,7 @@ {-# LANGUAGE DeriveDataTypeable, StandaloneDeriving #-} #endif #if !defined(TESTING) && __GLASGOW_HASKELL__ >= 703 -{-# LANGUAGE Safe #-} +{-# LANGUAGE Trustworthy #-} #endif ----------------------------------------------------------------------------- -- | diff --git a/Data/Set.hs b/Data/Set.hs index 96eb7ed..17f4d8f 100644 --- a/Data/Set.hs +++ b/Data/Set.hs @@ -3,7 +3,7 @@ {-# LANGUAGE DeriveDataTypeable, StandaloneDeriving #-} #endif #if !defined(TESTING) && __GLASGOW_HASKELL__ >= 703 -{-# LANGUAGE Safe #-} +{-# LANGUAGE Trustworthy #-} #endif ----------------------------------------------------------------------------- -- | _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
