diff options
author | Matej Kosik <m4tej.kosik@gmail.com> | 2015-12-16 17:31:25 +0100 |
---|---|---|
committer | Matej Kosik <m4tej.kosik@gmail.com> | 2015-12-18 15:58:52 +0100 |
commit | 1b5f85d38db7a0d7cb9a4b9491a5563461373182 (patch) | |
tree | bf4ea8472397e2e4b8bc380615df8f3a07f67dab /plugins | |
parent | 5824a2c9362a6e33eb43b5e0e2c7572abeee2511 (diff) |
CLEANUP: the definition of the "Constrexpr.case_expr" type was simplified
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/funind/indfun.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/funind/indfun.ml b/plugins/funind/indfun.ml index bf9da870e..7815a8f81 100644 --- a/plugins/funind/indfun.ml +++ b/plugins/funind/indfun.ml @@ -728,9 +728,9 @@ let rec add_args id new_args b = List.map (fun (e,o) -> add_args id new_args e,o) bl) | CCases(loc,sty,b_option,cel,cal) -> CCases(loc,sty,Option.map (add_args id new_args) b_option, - List.map (fun (b,(na,b_option)) -> + List.map (fun (b,na,b_option) -> add_args id new_args b, - (na, b_option)) cel, + na, b_option) cel, List.map (fun (loc,cpl,e) -> (loc,cpl,add_args id new_args e)) cal ) | CLetTuple(loc,nal,(na,b_option),b1,b2) -> |