diff options
author | GHC GitLab CI <ghc-ci@gitlab-haskell.org> | 2020-09-26 12:56:01 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-10-15 21:57:50 -0400 |
commit | 6b14c4185ca944295d5cfa60ebc6f7ab2a257fc9 (patch) | |
tree | 98cca4a3717174bd0b66d06a5cbf08362ec6b206 /libraries/base/GHC | |
parent | 998803dc4dbceb36074644483e11e6183fa5355a (diff) | |
download | haskell-6b14c4185ca944295d5cfa60ebc6f7ab2a257fc9.tar.gz |
Extend mAX_TUPLE_SIZE to 64
As well a ctuples and sums.
Diffstat (limited to 'libraries/base/GHC')
-rwxr-xr-x | libraries/base/GHC/Exts.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Exts.hs b/libraries/base/GHC/Exts.hs index fc8bb1ef0c..f6b80f7b54 100755 --- a/libraries/base/GHC/Exts.hs +++ b/libraries/base/GHC/Exts.hs @@ -133,7 +133,7 @@ import Control.Applicative (ZipList(..)) -- XXX This should really be in Data.Tuple, where the definitions are maxTupleSize :: Int -maxTupleSize = 62 +maxTupleSize = 64 -- | 'the' ensures that all the elements of the list are identical -- and then returns that unique element |