summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2012-12-14 14:21:46 +0000
committerhallgren <hallgren@chalmers.se>2012-12-14 14:21:46 +0000
commit9ab3a6034d017f87bfc62ac2fc9351e514841a24 (patch)
tree5c95fe979e3c984b6eb3b749cbac6ff2f5619392 /src
parentd7e3c869c2ae56141260d4576b439097e8271383 (diff)
Add language extension for ghc<7.4
FlexibleInstances does not imply TypeSynonymInstances, apparently.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/GF/Compile/Compute/Predef.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/Compute/Predef.hs b/src/compiler/GF/Compile/Compute/Predef.hs
index f37fd989f..c7ba532aa 100644
--- a/src/compiler/GF/Compile/Compute/Predef.hs
+++ b/src/compiler/GF/Compile/Compute/Predef.hs
@@ -1,5 +1,5 @@
-- | Implementations of predefined functions
-{-# LANGUAGE FlexibleInstances #-}
+{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-}
module GF.Compile.Compute.Predef(predef,predefName,delta) where
import Text.PrettyPrint(render,hang,text)