diff options
author | Austin Seipp <austin@well-typed.com> | 2015-01-19 06:54:54 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-01-19 06:54:54 -0600 |
commit | e1a458101a5233068f4d50fdfcfa473b5c8fdd11 (patch) | |
tree | a35b615a95fad4b003f959adf83e4440fae28e2f | |
parent | 4cfd235d4d52ce6e6c48013b2d5dcb347b978c24 (diff) | |
download | haskell-e1a458101a5233068f4d50fdfcfa473b5c8fdd11.tar.gz |
Revert "Fix undefined GHC.Real export with integer-simple"
This reverts commit 228902aa4a3350a9c99e421c0c989c7de794b7b6.
This commit is dependent on d6e7f5dc9db7e382ce34d649f85505176a451a04,
which broke the build on Windows (issue #9945).
-rw-r--r-- | libraries/base/GHC/Real.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Real.hs b/libraries/base/GHC/Real.hs index 146470921e..1a18e6a3ac 100644 --- a/libraries/base/GHC/Real.hs +++ b/libraries/base/GHC/Real.hs @@ -25,7 +25,7 @@ module GHC.Real Rational, (%), (^), (^%^), (^^), (^^%^^), denominator, divZeroError, even, - fromIntegral, gcd, infinity, integralEnumFrom, + fromIntegral, gcd, gcdInt', gcdWord', infinity, integralEnumFrom, integralEnumFromThen, integralEnumFromThenTo, integralEnumFromTo, lcm, notANumber, numerator, numericEnumFrom, numericEnumFromThen, numericEnumFromThenTo, numericEnumFromTo, odd, overflowError, ratioPrec, |