box-tuples 0.2.0.2 → 0.2.0.3
raw patch · 2 files changed
+3/−2 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- box-tuples.cabal +1/−1
- src/Data/Tuple/Unboxed/Rep.hs +2/−1
box-tuples.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: box-tuples-version: 0.2.0.2+version: 0.2.0.3 synopsis: A hack to use GHC.Prim primitives in GHCi description: As of now, the GHCi interactive runtime is incapable of working on unboxed tuples. In particular, it is unable to fully apply any function returning an
src/Data/Tuple/Unboxed/Rep.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE UnboxedTuples, MagicHash, CPP #-} #if __GLASGOW_HASKELL__ >= 800-{-# LANGUAGE TypeInType, RankNTypes, MultiParamTypeClasses, FlexibleInstances #-}+{-# LANGUAGE TypeInType, StarIsType, RankNTypes, MultiParamTypeClasses, FlexibleInstances #-} {-# OPTIONS_GHC -fobject-code #-} -------------------------------------------------------------------------------@@ -27,6 +27,7 @@ , RepCompose4(..) ) where +import Data.Kind import GHC.Prim import GHC.Exts