File tree 1 file changed +4
-4
lines changed
src/Control/Timeout/EventManager
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ import Control.Timeout.Types (Timeout)
95
95
96
96
-- | @E k p@ binds the key @k@ with the priority @p@.
97
97
data Elem a = E
98
- { key :: {-# UNPACK #-} ! Key
98
+ { key :: ! Key
99
99
, prio :: {-# UNPACK #-} ! Prio
100
100
, value :: a
101
101
} deriving (Eq )
@@ -109,7 +109,7 @@ type Key = Timeout
109
109
data PSQ a = Void
110
110
| Winner {- # UNPACK #-} !(Elem a )
111
111
! (LTree a )
112
- {- # UNPACK # -} !Key -- max key
112
+ ! Key -- max key
113
113
deriving (Eq )
114
114
115
115
-- | /O(1)/ The number of elements in a queue.
@@ -290,12 +290,12 @@ data LTree a = Start
290
290
| LLoser {- # UNPACK #-} !Size
291
291
{- # UNPACK #-} !(Elem a )
292
292
! (LTree a )
293
- {- # UNPACK # -} !Key -- split key
293
+ ! Key -- split key
294
294
! (LTree a )
295
295
| RLoser {- # UNPACK #-} !Size
296
296
{- # UNPACK #-} !(Elem a )
297
297
! (LTree a )
298
- {- # UNPACK # -} !Key -- split key
298
+ ! Key -- split key
299
299
! (LTree a )
300
300
deriving (Eq )
301
301
You can’t perform that action at this time.
0 commit comments