judah / haskeline

A Haskell library for line input in command-line programs.
https://hackage.haskell.org/package/haskeline
BSD 3-Clause "New" or "Revised" License
221 stars 75 forks source link

Win32: Hide console primitives from Win32-2.9 #145

Closed bgamari closed 4 years ago

bgamari commented 4 years ago

Win32 provides a few console primitives as of the 2.9 release, resulting in name shadowing warnings with our own local versions. Hide those from Win32 to avoid the warnings.

bgamari commented 4 years ago

This is necessary for GHC 9.0.

judah commented 4 years ago

Thanks @bgamari!