From d548af688ebb177a0fb659ec333a2e32d39b7b25 Mon Sep 17 00:00:00 2001 From: Sean Leather Date: Sat, 21 Mar 2015 13:49:10 +0200 Subject: [PATCH] FlexibleContexts required for GHC 7.10 --- System/IO/Pipeline.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/IO/Pipeline.hs b/System/IO/Pipeline.hs index ce2de75..e6de2a0 100644 --- a/System/IO/Pipeline.hs +++ b/System/IO/Pipeline.hs @@ -3,7 +3,7 @@ A pipeline closes itself when a read or write causes an error, so you can detect a broken pipeline by checking isClosed. It also closes itself when garbage collected, or you can close it explicitly. -} {-# LANGUAGE RecordWildCards, NamedFieldPuns, ScopedTypeVariables #-} -{-# LANGUAGE CPP #-} +{-# LANGUAGE CPP, FlexibleContexts #-} #if (__GLASGOW_HASKELL__ >= 706) {-# LANGUAGE RecursiveDo #-}