Navigation Menu

Skip to content

Commit

Permalink
Support ghc-7.2.1 by enabling FlexibleInstances
Browse files Browse the repository at this point in the history
In ghc-7.2.1 the TypeSynonymInstances extension now correctly requires that instances are valid once the type synonym is expanded. This means that when Row is expanded we need to enable the FlexibleInstances extension.
  • Loading branch information
basvandijk committed Aug 10, 2011
1 parent 23946f9 commit 022080b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/CSV/Enumerator.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE OverloadedStrings, BangPatterns #-}
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-}

module Data.CSV.Enumerator
(
Expand Down

0 comments on commit 022080b

Please sign in to comment.