aboutsummaryrefslogtreecommitdiff
path: root/theories/Logic/DecidableType.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Logic/DecidableType.v')
-rw-r--r--theories/Logic/DecidableType.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/Logic/DecidableType.v b/theories/Logic/DecidableType.v
index 6b3cccae99..e372ae75c8 100644
--- a/theories/Logic/DecidableType.v
+++ b/theories/Logic/DecidableType.v
@@ -16,9 +16,9 @@ Unset Strict Implicit.
Module Type EqualityType.
- Parameter t : Set.
+ Parameter Inline t : Set.
- Parameter eq : t -> t -> Prop.
+ Parameter Inline eq : t -> t -> Prop.
Axiom eq_refl : forall x : t, eq x x.
Axiom eq_sym : forall x y : t, eq x y -> eq y x.
@@ -33,9 +33,9 @@ End EqualityType.
Module Type DecidableType.
- Parameter t : Set.
+ Parameter Inline t : Set.
- Parameter eq : t -> t -> Prop.
+ Parameter Inline eq : t -> t -> Prop.
Axiom eq_refl : forall x : t, eq x x.
Axiom eq_sym : forall x y : t, eq x y -> eq y x.