Skip to content

Commit d2ffd0d

Browse files
committed
more oops
1 parent 41bda5b commit d2ffd0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Lean/Expr.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ with
518518
| .lam _ t b _ =>
519519
let d := (max t.data.approxDepth.toUInt32 b.data.approxDepth.toUInt32) + 1
520520
mkDataForBinder (mixHash d.toUInt64 <| mixHash t.data.hash b.data.hash)
521-
(max t.data.looseBVarRange b.data.looseBVarRange)
521+
(max t.data.looseBVarRange b.data.looseBVarRange.pred)
522522
d
523523
(t.data.hasFVar || b.data.hasFVar)
524524
(t.data.hasExprMVar || b.data.hasExprMVar)
@@ -527,7 +527,7 @@ with
527527
| .forallE _ t b _ =>
528528
let d := (max t.data.approxDepth.toUInt32 b.data.approxDepth.toUInt32) + 1
529529
mkDataForBinder (mixHash d.toUInt64 <| mixHash t.data.hash b.data.hash)
530-
(max t.data.looseBVarRange b.data.looseBVarRange)
530+
(max t.data.looseBVarRange b.data.looseBVarRange.pred)
531531
d
532532
(t.data.hasFVar || b.data.hasFVar)
533533
(t.data.hasExprMVar || b.data.hasExprMVar)

0 commit comments

Comments
 (0)