Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
Packages
Cabal
Commits
2b296d22
Commit
2b296d22
authored
Oct 12, 2013
by
Mikhail Glushenkov
Browse files
Fix warning on Windows.
parent
6ce9ca28
Changes
1
Hide whitespace changes
Inline
Side-by-side
cabal-install/Distribution/Client/Install.hs
View file @
2b296d22
...
...
@@ -34,8 +34,12 @@ import qualified Data.Set as S
import
Data.Maybe
(
isJust
,
fromMaybe
,
maybeToList
)
import
Control.Exception
as
Exception
(
Exception
(
fromException
,
toException
),
bracket
,
catches
(
Exception
(
toException
),
bracket
,
catches
,
Handler
(
Handler
),
handleJust
,
IOException
,
SomeException
)
#
ifndef
mingw32_HOST_OS
import
Control.Exception
as
Exception
(
Exception
(
fromException
)
)
#
endif
import
System.Exit
(
ExitCode
(
..
)
)
import
Distribution.Compat.Exception
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment