Skip to content

Commit

Permalink
Remove now-unneeded workaround default case for PrimDeepSeqCond' Eith…
Browse files Browse the repository at this point in the history
…er instance
  • Loading branch information
krame505 committed Mar 12, 2021
1 parent a5c9c01 commit dc94313
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Libraries/Base1/Prelude.bs
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,6 @@ instance (PrimDeepSeqCond' r) => PrimDeepSeqCond' (Meta m r) where
instance (PrimDeepSeqCond' r1, PrimDeepSeqCond' r2) => PrimDeepSeqCond' (Either r1 r2) where
primDeepSeqCond' (Left x) = primDeepSeqCond' x
primDeepSeqCond' (Right x) = primDeepSeqCond' x
primDeepSeqCond' _ = id

instance (PrimDeepSeqCond' r1, PrimDeepSeqCond' r2) => PrimDeepSeqCond' (r1, r2) where
primDeepSeqCond' (x, y) z = primDeepSeqCond' x $ primDeepSeqCond' y z
Expand Down

0 comments on commit dc94313

Please sign in to comment.