From: Michael Orlitzky Date: Wed, 24 Aug 2011 20:21:27 +0000 (-0400) Subject: Replace TypeSynonymInstances with FlexibleInstances (makes GHC 7.2.1 happy) everywhere. X-Git-Tag: 0.0.1~219 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=248880a645548e5d1910814dd9023e2af80e16ac;hp=ac59c267ad9f59ddb997d66029d112f158f13da4;p=spline3.git Replace TypeSynonymInstances with FlexibleInstances (makes GHC 7.2.1 happy) everywhere. --- diff --git a/src/Point.hs b/src/Point.hs index 2b8d597..e5260ae 100644 --- a/src/Point.hs +++ b/src/Point.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE TypeSynonymInstances #-} +{-# LANGUAGE FlexibleInstances #-} module Point where diff --git a/src/RealFunction.hs b/src/RealFunction.hs index 14afb91..cf98029 100644 --- a/src/RealFunction.hs +++ b/src/RealFunction.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE TypeSynonymInstances #-} +{-# LANGUAGE FlexibleInstances #-} module RealFunction where diff --git a/src/Values.hs b/src/Values.hs index 61e3a11..0ef8410 100644 --- a/src/Values.hs +++ b/src/Values.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE TypeSynonymInstances #-} +{-# LANGUAGE FlexibleInstances #-} module Values where