From cf0cf2421a449999aa218be35dba53dc87d52eaa Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 16 Jan 2010 17:44:51 +0000 Subject: [PATCH] Fix the build: export void, so it doesn't give an unused binding warning --- Control/Monad.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Control/Monad.hs b/Control/Monad.hs index 407bfc4..8972ca1 100644 --- a/Control/Monad.hs +++ b/Control/Monad.hs @@ -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 -- 1.7.10.4