Repository : ssh://darcs.haskell.org//srv/darcs/packages/base On branch : master
http://hackage.haskell.org/trac/ghc/changeset/9054246b93f6f76e572e9a67c3f09bf0f811844f >--------------------------------------------------------------- commit 9054246b93f6f76e572e9a67c3f09bf0f811844f Author: Ian Lynagh <[email protected]> Date: Thu Jul 7 15:38:42 2011 +0100 Foreign.Marshal now reexports Foreign.Marshal.Safe Rather than duplicating the list of things that Foreign.Marshal.Safe reexports. >--------------------------------------------------------------- Foreign/Marshal.hs | 14 +++----------- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git a/Foreign/Marshal.hs b/Foreign/Marshal.hs index 438dc2f..4768f2d 100644 --- a/Foreign/Marshal.hs +++ b/Foreign/Marshal.hs @@ -16,22 +16,14 @@ module Foreign.Marshal ( - -- | The module "Foreign.Marshal" re-exports the other modules in the + -- | The module "Foreign.Marshal" re-exports the safe content in the -- @Foreign.Marshal@ hierarchy: - module Foreign.Marshal.Alloc - , module Foreign.Marshal.Array - , module Foreign.Marshal.Error - , module Foreign.Marshal.Pool - , module Foreign.Marshal.Utils + module Foreign.Marshal.Safe -- | and provides one function: , unsafeLocalState ) where -import Foreign.Marshal.Alloc -import Foreign.Marshal.Array -import Foreign.Marshal.Error -import Foreign.Marshal.Pool -import Foreign.Marshal.Utils +import Foreign.Marshal.Safe #ifdef __GLASGOW_HASKELL__ import GHC.IO _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
