diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-10-15 09:28:58 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-10-16 00:15:31 -0400 |
commit | bf7c5b6ddea5024baa2e04110ab2801f8797fafd (patch) | |
tree | 237c40d2c23756fdb7495f41e7c85a66a11b85e9 /libraries | |
parent | 1bb0512f319c1361e2c5a7ab3e1c2978d3a95b9b (diff) | |
download | haskell-bf7c5b6ddea5024baa2e04110ab2801f8797fafd.tar.gz |
base: Reintroduce necessary LANGUAGE pragmas
These were incorrectly removed in a recent cleanup commit.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/GHC/IO/Handle/Lock/Windows.hsc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/GHC/IO/Handle/Lock/Windows.hsc b/libraries/base/GHC/IO/Handle/Lock/Windows.hsc index 399807b54b..80ff5fb164 100644 --- a/libraries/base/GHC/IO/Handle/Lock/Windows.hsc +++ b/libraries/base/GHC/IO/Handle/Lock/Windows.hsc @@ -1,6 +1,8 @@ {-# LANGUAGE CPP #-} {-# LANGUAGE InterruptibleFFI #-} {-# LANGUAGE NoImplicitPrelude #-} +{-# LANGUAGE LambdaCase #-} +{-# LANGUAGE MultiWayIf #-} -- | File locking for Windows. module GHC.IO.Handle.Lock.Windows where |