diff options
| author | Guillaume Melquiond | 2014-09-17 17:45:39 +0200 |
|---|---|---|
| committer | Guillaume Melquiond | 2014-09-17 17:54:39 +0200 |
| commit | 95c915ce89cc168ec34ab36797c78de94fcc0a18 (patch) | |
| tree | a07639d54aeebdf0dd8f75f3ec0e4ccfc8e03163 /theories/Strings/Ascii.v | |
| parent | 9060a941d8b7566220f6fb6a191ac2fd7eca7315 (diff) | |
Add some missing Proof statements.
Diffstat (limited to 'theories/Strings/Ascii.v')
| -rw-r--r-- | theories/Strings/Ascii.v | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/theories/Strings/Ascii.v b/theories/Strings/Ascii.v index 7d7dcc6d0f..746161b382 100644 --- a/theories/Strings/Ascii.v +++ b/theories/Strings/Ascii.v @@ -34,6 +34,7 @@ Definition shift (c : bool) (a : ascii) := (** Definition of a decidable function that is effective *) Definition ascii_dec : forall a b : ascii, {a = b} + {a <> b}. +Proof. decide equality; apply bool_dec. Defined. |
