@@ -78,7 +78,7 @@ data CompilerFlavor
7878 | MHS -- MicroHS, see https://github.com/augustss/MicroHs
7979 | HaskellSuite String -- string is the id of the actual compiler
8080 | OtherCompiler String
81- deriving (Generic , Show , Read , Eq , Ord , Typeable , Data )
81+ deriving (Generic , Show , Read , Eq , Ord , Data )
8282
8383instance Binary CompilerFlavor
8484instance Structured CompilerFlavor
@@ -143,7 +143,6 @@ data PerCompilerFlavor v = PerCompilerFlavor v v
143143 , Read
144144 , Eq
145145 , Ord
146- , Typeable
147146 , Data
148147 , Functor
149148 , Foldable
@@ -174,7 +173,7 @@ instance (Semigroup a, Monoid a) => Monoid (PerCompilerFlavor a) where
174173-- ------------------------------------------------------------
175174
176175data CompilerId = CompilerId CompilerFlavor Version
177- deriving (Eq , Generic , Ord , Read , Show , Typeable )
176+ deriving (Eq , Generic , Ord , Read , Show )
178177
179178instance Binary CompilerId
180179instance Structured CompilerId
@@ -224,7 +223,7 @@ instance Binary CompilerInfo
224223data AbiTag
225224 = NoAbiTag
226225 | AbiTag String
227- deriving (Eq , Generic , Show , Read , Typeable )
226+ deriving (Eq , Generic , Show , Read )
228227
229228instance Binary AbiTag
230229instance Structured AbiTag
0 commit comments