Skip to content
Snippets Groups Projects
Commit c361b651 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Avoid universe constraints for `mapset`.

parent 56558ffb
No related branches found
No related tags found
1 merge request!370Avoid universe bumps of `gset`/`mapset` (fixes #134)
......@@ -8,8 +8,9 @@ From stdpp Require Import options.
locally (or things moved out of sections) as no default works well enough. *)
Unset Default Proof Using.
Record mapset (M : Type Type) : Type :=
Mapset { mapset_car: M (unit : Type) }.
Record mapset' (M : Type) : Type :=
Mapset { mapset_car: M }.
Notation mapset M := (mapset' (M unit)).
Global Arguments Mapset {_} _ : assert.
Global Arguments mapset_car {_} _ : assert.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment