haskell / win32

Haskell support for the Win32 API
http://hackage.haskell.org/package/Win32
Other
97 stars 62 forks source link

Remove unused CPP lower bounds #114

Closed RyanGlScott closed 6 years ago

RyanGlScott commented 6 years ago

Win32 currently supports GHC 7.4 as the minimum, so many checks of the form #if __GLASGOW_HASKELL__ >= 701 are never reached. Let's remove them.

Mistuke commented 6 years ago

Fair enough. Thanks @RyanGlScott