Fix the build: export void, so it doesn't give an unused binding warning
authorIan Lynagh <igloo@earth.li>
Sat, 16 Jan 2010 17:44:51 +0000 (17:44 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 16 Jan 2010 17:44:51 +0000 (17:44 +0000)
Control/Monad.hs

index 407bfc4..8972ca1 100644 (file)
@@ -40,6 +40,7 @@ module Control.Monad
     , (>=>)         -- :: (Monad m) => (a -> m b) -> (b -> m c) -> (a -> m c)
     , (<=<)         -- :: (Monad m) => (b -> m c) -> (a -> m b) -> (a -> m c)
     , forever       -- :: (Monad m) => m a -> m b
+    , void
 
     -- ** Generalisations of list functions