From f7c04d870a2193e003fdb730c99748253a8fac14 Mon Sep 17 00:00:00 2001 From: "jpm@cs.uu.nl" Date: Wed, 27 Oct 2010 12:30:53 +0000 Subject: [PATCH] Follow GHC.Types changes --- GHC/Bool.hs-boot | 7 ------- GHC/Generics.hs | 3 +-- GHC/Types.hs-boot | 2 ++ 3 files changed, 3 insertions(+), 9 deletions(-) delete mode 100644 GHC/Bool.hs-boot diff --git a/GHC/Bool.hs-boot b/GHC/Bool.hs-boot deleted file mode 100644 index aab8f17..0000000 --- a/GHC/Bool.hs-boot +++ /dev/null @@ -1,7 +0,0 @@ - -{-# OPTIONS_GHC -XNoImplicitPrelude #-} - -module GHC.Bool where - -data Bool = False | True - diff --git a/GHC/Generics.hs b/GHC/Generics.hs index 8b0efef..7f5b86f 100644 --- a/GHC/Generics.hs +++ b/GHC/Generics.hs @@ -45,8 +45,7 @@ module GHC.Generics ( -} ) where -import {-# SOURCE #-} GHC.Types -- ([](..), Int, Char) -import {-# SOURCE #-} GHC.Bool (Bool(..)) +import {-# SOURCE #-} GHC.Types -------------------------------------------------------------------------------- -- Representation types diff --git a/GHC/Types.hs-boot b/GHC/Types.hs-boot index 25f88c4..be0e3bd 100644 --- a/GHC/Types.hs-boot +++ b/GHC/Types.hs-boot @@ -13,3 +13,5 @@ data Char = C# Char# data Int = I# Int# +data Bool = False | True + -- 1.7.10.4