From 07aa83ca199a179c3e811aa541fef1c5037750bd Mon Sep 17 00:00:00 2001 From: Chris Done Date: Wed, 13 May 2015 16:26:24 +0200 Subject: [PATCH] Remove Generic --- src/Path/Internal.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Path/Internal.hs b/src/Path/Internal.hs index 56971d2..bd2a0d3 100644 --- a/src/Path/Internal.hs +++ b/src/Path/Internal.hs @@ -10,7 +10,6 @@ module Path.Internal where import Data.Data -import GHC.Generics -- | Path of some base and type. -- @@ -22,7 +21,7 @@ import GHC.Generics -- All directories end in a trailing separator. There are no duplicate -- path separators @\/\/@, no @..@, no @.\/@, no @~\/@, etc. newtype Path b t = Path FilePath - deriving (Typeable,Generic) + deriving (Typeable) -- | String equality. --