From f3bdf1d6c8d63210d24dbe0cdec6095cd296ee27 Mon Sep 17 00:00:00 2001 From: "jpm@cs.uu.nl" Date: Thu, 14 Oct 2010 12:42:40 +0000 Subject: [PATCH] Do not export GHC.Generics from GHC.Base --- GHC/Base.lhs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/GHC/Base.lhs b/GHC/Base.lhs index be1b57b..1a5ce0d 100644 --- a/GHC/Base.lhs +++ b/GHC/Base.lhs @@ -97,7 +97,8 @@ module GHC.Base ( module GHC.Base, module GHC.Classes, - module GHC.Generics, + --module GHC.Generics, -- JPM: We no longer export GHC.Generics + -- by default to avoid name clashes module GHC.Ordering, module GHC.Types, module GHC.Prim, -- Re-export GHC.Prim and GHC.Err, to avoid lots @@ -107,7 +108,8 @@ module GHC.Base import GHC.Types import GHC.Classes -import GHC.Generics +-- JPM: Since we don't export it, we don't need to import GHC.Generics +--import GHC.Generics import GHC.Ordering import GHC.Prim import {-# SOURCE #-} GHC.Show -- 1.7.10.4