X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fcic_proof_checking%2FcicUnivUtils.ml;h=d61545ff66bea18a4dd2d997c1f67d2d2010d973;hb=c59d5065faea77ce41431e273a3331f4d152fbfa;hp=cbc87e98afcc3574042a3b2813749a7bd14dd888;hpb=db48e1ca9a2c0db7e8101367ec98e4ff2f1c069c;p=helm.git diff --git a/helm/software/components/cic_proof_checking/cicUnivUtils.ml b/helm/software/components/cic_proof_checking/cicUnivUtils.ml index cbc87e98a..d61545ff6 100644 --- a/helm/software/components/cic_proof_checking/cicUnivUtils.ml +++ b/helm/software/components/cic_proof_checking/cicUnivUtils.ml @@ -85,7 +85,7 @@ let universes_of_obj uri t = | C.Cast (v,t) -> C.Cast (aux v, aux t) | C.Prod (b,s,t) -> C.Prod (b,aux s, aux t) | C.Lambda (b,s,t) -> C.Lambda (b,aux s, aux t) - | C.LetIn (b,s,t) -> C.LetIn (b,aux s, aux t) + | C.LetIn (b,s,ty,t) -> C.LetIn (b,aux s, aux ty, aux t) | C.Appl li -> C.Appl (List.map aux li) | C.MutCase (uri,n1,ty,te,patterns) -> C.MutCase (uri,n1,aux ty,aux te, List.map aux patterns)