From 248880a645548e5d1910814dd9023e2af80e16ac Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 24 Aug 2011 16:21:27 -0400 Subject: [PATCH] Replace TypeSynonymInstances with FlexibleInstances (makes GHC 7.2.1 happy) everywhere. --- src/Point.hs | 2 +- src/RealFunction.hs | 2 +- src/Values.hs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.44.2