Skip to content

Commit

Permalink
Merge PR #13180: Respect Print Universes when printing primitive arrays
Browse files Browse the repository at this point in the history
Reviewed-by: herbelin
  • Loading branch information
coqbot-app[bot] committed Oct 20, 2020
2 parents 48319ad + 5da6b8c commit 1111093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interp/constrextern.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ let rec extern inctx ?impargs scopes vars r =
| GFloat f -> extern_float f (snd scopes)

| GArray(u,t,def,ty) ->
CArray(u,Array.map (extern inctx scopes vars) t, extern inctx scopes vars def, extern_typ scopes vars ty)
CArray(extern_universes u,Array.map (extern inctx scopes vars) t, extern inctx scopes vars def, extern_typ scopes vars ty)

in insert_entry_coercion coercion (CAst.make ?loc c)

Expand Down

0 comments on commit 1111093

Please sign in to comment.