Skip to content

Commit 51a741a

Browse files
committed
Eliminated unused variables in Data/Vector/Internal/Check.hs
1 parent 8a63f92 commit 51a741a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data/Vector/Internal/Check.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ not False = True
3939

4040
(&&) :: Bool -> Bool -> Bool
4141
{-# INLINE (&&) #-}
42-
False && x = False
42+
False && _ = False
4343
True && x = x
4444

4545
(||) :: Bool -> Bool -> Bool
4646
{-# INLINE (||) #-}
47-
True || x = True
47+
True || _ = True
4848
False || x = x
4949

5050

0 commit comments

Comments
 (0)