Skip to content

Commit 11ab22b

Browse files
author
Johannes Waldmann
committed
remove warning
1 parent df79cbc commit 11ab22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/src/Data/Set/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1865,7 +1865,7 @@ data StrictTriple = ST !Int !Int !Int
18651865
-- | return bitmask for upper half,
18661866
-- index of middle bit, bitmask for lower half
18671867
splitBits :: Int -> StrictTriple
1868-
splitBits m | m > 0 =
1868+
splitBits m =
18691869
let go 0 !x = x; go k !x = go (k-1) (clearLowest x)
18701870
!up_med = go (div (popCount m) 2) m
18711871
!lo = xor m up_med

0 commit comments

Comments
 (0)