diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-20 17:37:24 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-20 17:38:10 +0200 |
commit | e76fafaaeec65d2b4a98556561a96f40d81391ab (patch) | |
tree | a3c7bbcb4276ae8416130bbc5a74c5148dd46a7b /libraries | |
parent | 5e300d58f69ec79c647f8a97b0e8fa0f588d2662 (diff) | |
download | haskell-e76fafaaeec65d2b4a98556561a96f40d81391ab.tar.gz |
Fix potential `mingw32_HOST_OS` breakage from eae19112462fe77
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/Control/Concurrent.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Control/Concurrent.hs b/libraries/base/Control/Concurrent.hs index 9ab209e5d5..eaf1e6621f 100644 --- a/libraries/base/Control/Concurrent.hs +++ b/libraries/base/Control/Concurrent.hs @@ -123,7 +123,7 @@ import Foreign.C.Types #ifdef mingw32_HOST_OS import Foreign.C import System.IO -import Data.Maybe (Maybe(..)) +import Data.Functor ( void ) #endif import Control.Concurrent.MVar |