summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2019-01-16 10:33:05 +0100
committerGabor Greif <ggreif@gmail.com>2019-01-16 10:33:05 +0100
commitf1892272ab54c256ae86f647d130b59cbdae6288 (patch)
tree3b7510f673abc2068b4a0f7637ad7ab051f4255c
parente615cc83841e6a6c4461352428ecf6597ebd1d23 (diff)
downloadhaskell-wip/T14677.tar.gz
reduce line noisewip/T14677
-rw-r--r--libraries/base/GHC/Event/Internal.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Event/Internal.hs b/libraries/base/GHC/Event/Internal.hs
index 57cb293976..afe880b8c2 100644
--- a/libraries/base/GHC/Event/Internal.hs
+++ b/libraries/base/GHC/Event/Internal.hs
@@ -58,7 +58,7 @@ evtClose :: Event
evtClose = Event 4
eventIs :: Event -> Event -> Bool
-eventIs (Event a) (Event b) = a .&. b /= 0
+Event a `eventIs` Event b = a .&. b /= 0
-- | @since 4.4.0.0
instance Show Event where