From 09d96bb88492a8a26a7ed22c40b044b1a63d520d Mon Sep 17 00:00:00 2001 From: Jesse Rosenthal <jrosenthal@jhu.edu> Date: Sat, 3 Sep 2016 15:23:32 -0400 Subject: [PATCH] Remove unnecessary CPP in custom Prelude. We don't have to worry about base < 4.7. --- prelude/Prelude.hs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/prelude/Prelude.hs b/prelude/Prelude.hs index 50e86a7b9..34f133d83 100644 --- a/prelude/Prelude.hs +++ b/prelude/Prelude.hs @@ -19,12 +19,8 @@ where #if MIN_VERSION_base(4,8,0) import "base" Prelude as P -#elif MIN_VERSION_base(4,6,0) +#else import "base" Prelude as P import Control.Applicative import Data.Monoid -#else -import "base" Prelude as P hiding (catch) -import Control.Applicative -import Data.Monoid #endif