X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic%2Funshare.ml;h=9300c9e3a95eb6ed453a839129e21a51bdb246d2;hb=97c2d258a5c524eb5c4b85208899d80751a2c82f;hp=10f4f3df4b987dac17fe266dd2d3c824a2f8707c;hpb=e02f1fb84607becbaa86fe475a63be970a838286;p=helm.git diff --git a/helm/ocaml/cic/unshare.ml b/helm/ocaml/cic/unshare.ml index 10f4f3df4..9300c9e3a 100644 --- a/helm/ocaml/cic/unshare.ml +++ b/helm/ocaml/cic/unshare.ml @@ -41,8 +41,8 @@ let rec unshare = ) l in C.Meta(i,l') - | C.Sort _ as t -> t - | C.Implicit _ as t -> t + | C.Sort s -> C.Sort s + | C.Implicit info -> C.Implicit info | C.Cast (te,ty) -> C.Cast (unshare te, unshare ty) | C.Prod (n,s,t) -> C.Prod (n, unshare s, unshare t) | C.Lambda (n,s,t) -> C.Lambda (n, unshare s, unshare t)