Skip to content

Commit 1b294d4

Browse files
committed
---
yaml --- r: 766 b: refs/heads/master c: 9908629 h: refs/heads/master v: v3
1 parent 67201a9 commit 1b294d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 594cf632147bd8eb21ae55e9e377412ef974397a
2+
refs/heads/master: 99086292ac50458244722aedbad53c5047214429

trunk/src/boot/fe/cexp.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ let rec eval_cexps (env:env) (exps:cexp array) : cdir array =
344344

345345
and eval_cexp (env:env) (exp:cexp) : cdir array =
346346
match exp with
347-
CEXP_alt {node=ca} ->
347+
CEXP_alt { node = ca; id = _ } ->
348348
let v = eval_pexp env ca.alt_val in
349349
let rec try_arm i =
350350
if i >= Array.length ca.alt_arms
@@ -358,7 +358,7 @@ and eval_cexp (env:env) (exp:cexp) : cdir array =
358358
in
359359
eval_cexps env (try_arm 0)
360360

361-
| CEXP_let {node=cl} ->
361+
| CEXP_let { node = cl; id = _ } ->
362362
let ident = cl.let_ident in
363363
let v = eval_pexp env cl.let_value in
364364
let old_bindings = !(env.env_bindings) in

0 commit comments

Comments
 (0)