From: Bernhard Urban Date: Thu, 26 Apr 2012 11:34:38 +0000 (+0200) Subject: monadIO: export Control.Monad.Trans too X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=harpy.git;a=commitdiff_plain;h=5ace595439b1cd360bade19293b2a69a7fd9910f monadIO: export Control.Monad.Trans too I know, it's hackish. but otherwise, the instantiation of CodeGen in MonadIO isn't visible o_O --- diff --git a/Harpy.hs b/Harpy.hs index 89e58cd..c698019 100644 --- a/Harpy.hs +++ b/Harpy.hs @@ -15,8 +15,10 @@ ---------------------------------------------------------------------------- module Harpy(module Harpy.CodeGenMonad, module Harpy.Call, - module Harpy.X86Assembler) where + module Harpy.X86Assembler, + module Control.Monad.Trans) where import Harpy.CodeGenMonad import Harpy.Call import Harpy.X86Assembler +import Control.Monad.Trans