We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df9c29 commit 8bc7c61Copy full SHA for 8bc7c61
Win32-network/src/System/Win32/Async/IOData.hsc
@@ -43,6 +43,8 @@ import Control.Exception ( SomeAsyncException
43
import Control.Monad ( when
44
, void
45
)
46
+import Data.Kind ( Type
47
+ )
48
import Foreign ( Ptr
49
, StablePtr
50
, Storable (..)
@@ -80,7 +82,7 @@ data AsyncSing (asyncType :: AsyncType) where
80
82
-- number of storable instances as we can map directly @asyncType :: AsyncType@
81
83
-- to the 'OVERLAPPED' or 'WSAOVERLAPPED' .
84
--
-type family OverlappedType (asyncType :: AsyncType) :: * where
85
+type family OverlappedType (asyncType :: AsyncType) :: Type where
86
OverlappedType Async = OVERLAPPED
87
OverlappedType WsaAsync = WSAOVERLAPPED
88
0 commit comments