Skip to content

Commit cf37896

Browse files
committed
No longer derive Typeable (obsolete since GHC 7.10)
1 parent 1cb8fa0 commit cf37896

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Network/NetRc.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ data NetRcHost = NetRcHost
7272
, nrhPassword :: !ByteString -- ^ @password@ property (@""@ if missing)
7373
, nrhAccount :: !ByteString -- ^ @account@ property (@""@ if missing)
7474
, nrhMacros :: [NetRcMacDef] -- ^ associated @macdef@ entries
75-
} deriving (Eq,Ord,Show,Typeable,Data,Generic)
75+
} deriving (Eq, Ord, Show, Data, Generic)
7676

7777
instance NFData NetRcHost where rnf !_ = ()
7878

@@ -84,7 +84,7 @@ data NetRcMacDef = NetRcMacDef
8484
, nrmBody :: !ByteString -- ^ Raw @macdef@ body
8585
--
8686
-- __Invariant__: must not contain null-lines, i.e. consecutive @LF@s
87-
} deriving (Eq,Ord,Show,Typeable,Data,Generic)
87+
} deriving (Eq, Ord, Show, Data, Generic)
8888

8989
instance NFData NetRcMacDef where rnf !_ = ()
9090

@@ -105,7 +105,7 @@ data NetRc = NetRc
105105
-- associated with host-entries are
106106
-- invisible to some applications
107107
-- (e.g. @ftp(1)@).
108-
} deriving (Eq,Ord,Show,Typeable,Data,Generic)
108+
} deriving (Eq, Ord, Show, Data, Generic)
109109

110110
instance NFData NetRc where
111111
rnf (NetRc ms ds) = ms `deepseq` ds `deepseq` ()

0 commit comments

Comments
 (0)