Remove the getType field name from OrdType.
authorMatthijs Kooijman <m.kooijman@student.utwente.nl>
Thu, 6 Aug 2009 15:54:03 +0000 (17:54 +0200)
committerMatthijs Kooijman <m.kooijman@student.utwente.nl>
Thu, 6 Aug 2009 15:54:03 +0000 (17:54 +0200)
This conflicted with the getType method from TypedThing. The field label
was never used.

cλash/CLasH/Translator/TranslatorTypes.hs

index 075871ac59e9f347b5268a1dd409cec700d3ba48..47deeef9844d6089871ac3af4277c17513acae29 100644 (file)
@@ -39,7 +39,7 @@ type Finder =
 -----------------------------------------------------------------------------
 
 -- A orderable equivalent of CoreSyn's Type for use as a map key
-newtype OrdType = OrdType { getType :: Type.Type }
+newtype OrdType = OrdType Type.Type
 instance Eq OrdType where
   (OrdType a) == (OrdType b) = Type.tcEqType a b
 instance Ord OrdType where