diff options
| author | Maxime Dénès | 2018-03-04 16:46:49 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-03-04 16:46:49 +0100 |
| commit | 9cd987a07d3792dc200e15c5e792a25a1a99c9c6 (patch) | |
| tree | efa4cbcd3d3959485e8a2f7b4bbb1d5888603be4 /kernel/cemitcodes.ml | |
| parent | 0a9a45abbd3421f3b2cfc4f6428938898a933ffe (diff) | |
| parent | c7be6d5a1e548fe1fdfc7b3fc248613bfb7fc613 (diff) | |
Merge PR #6876: Unify Const_sorts and Const_type, and remove Vsort
Diffstat (limited to 'kernel/cemitcodes.ml')
| -rw-r--r-- | kernel/cemitcodes.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cemitcodes.ml b/kernel/cemitcodes.ml index 856b0b465c..32d5387b23 100644 --- a/kernel/cemitcodes.ml +++ b/kernel/cemitcodes.ml @@ -350,7 +350,7 @@ type to_patch = emitcodes * patches * fv (* Substitution *) let rec subst_strcst s sc = match sc with - | Const_sorts _ | Const_b0 _ | Const_univ_level _ | Const_type _ -> sc + | Const_sort _ | Const_b0 _ | Const_univ_level _ -> sc | Const_proj p -> Const_proj (subst_constant s p) | Const_bn(tag,args) -> Const_bn(tag,Array.map (subst_strcst s) args) | Const_ind ind -> let kn,i = ind in Const_ind (subst_mind s kn, i) |
