]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Replace TypeSynonymInstances with FlexibleInstances (makes GHC 7.2.1 happy) everywhere.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Aug 2011 20:21:27 +0000 (16:21 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Aug 2011 20:21:27 +0000 (16:21 -0400)
src/Point.hs
src/RealFunction.hs
src/Values.hs

index 2b8d59736e28e91a5ce1cc9104e5c131305db3c6..e5260ae06a943505e907439a4bff81ee7bbe03b8 100644 (file)
@@ -1,4 +1,4 @@
-{-# LANGUAGE TypeSynonymInstances #-}
+{-# LANGUAGE FlexibleInstances #-}
 
 module Point
 where
index 14afb910e523a2ba611e7ef3d50317cbbf7ffdb4..cf98029a5f4948d71375ca0e8c188e19a2d39527 100644 (file)
@@ -1,4 +1,4 @@
-{-# LANGUAGE TypeSynonymInstances #-}
+{-# LANGUAGE FlexibleInstances #-}
 
 module RealFunction
 where
index 61e3a11d3c2cd274afb5963bd5ba4091c8d4df86..0ef8410813e80729e09a0af3ec4a162bd7868814 100644 (file)
@@ -1,4 +1,4 @@
-{-# LANGUAGE TypeSynonymInstances #-}
+{-# LANGUAGE FlexibleInstances #-}
 
 module Values
 where