[commit: packages/vector] master: Add LANGUAGE extensions for inferred signatures. (a6049ab)

git at git.haskell.org git at git.haskell.org
Sat Apr 19 09:14:27 UTC 2014


Repository : ssh://git@git.haskell.org/vector

On branch  : master
Link       : http://git.haskell.org/packages/vector.git/commitdiff/a6049abce040713e9a5f175887cf70d12b9057c6

>---------------------------------------------------------------

commit a6049abce040713e9a5f175887cf70d12b9057c6
Author: Jan Stolarek <jan.stolarek at p.lodz.pl>
Date:   Sat Apr 19 09:08:49 2014 +0200

    Add LANGUAGE extensions for inferred signatures.
    
    Some of the inferred signatures required LANGUAGE extensions that
    were not enabled. Since now GHC checks that we have to explicitly
    list required extensions.


>---------------------------------------------------------------

a6049abce040713e9a5f175887cf70d12b9057c6
 Data/Vector/Generic/Mutable.hs |    3 ++-
 Data/Vector/Mutable.hs         |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Data/Vector/Generic/Mutable.hs b/Data/Vector/Generic/Mutable.hs
index 91e7036..17a7540 100644
--- a/Data/Vector/Generic/Mutable.hs
+++ b/Data/Vector/Generic/Mutable.hs
@@ -1,4 +1,5 @@
-{-# LANGUAGE MultiParamTypeClasses, BangPatterns, ScopedTypeVariables #-}
+{-# LANGUAGE MultiParamTypeClasses, BangPatterns, ScopedTypeVariables,
+             TypeFamilies #-}
 -- |
 -- Module      : Data.Vector.Generic.Mutable
 -- Copyright   : (c) Roman Leshchinskiy 2008-2010
diff --git a/Data/Vector/Mutable.hs b/Data/Vector/Mutable.hs
index e896f3a..e97c4a8 100644
--- a/Data/Vector/Mutable.hs
+++ b/Data/Vector/Mutable.hs
@@ -1,4 +1,5 @@
-{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, BangPatterns #-}
+{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, BangPatterns,
+             TypeFamilies  #-}
 
 -- |
 -- Module      : Data.Vector.Mutable



More information about the ghc-commits mailing list