diff options
| author | letouzey | 2009-10-08 13:10:30 +0000 |
|---|---|---|
| committer | letouzey | 2009-10-08 13:10:30 +0000 |
| commit | bdec9fddcdaa13800e04e718ffa52f87bddc52d9 (patch) | |
| tree | 8dd2356885cc98944513644ca528eceeb37c253c /theories/Lists | |
| parent | 55d9e712c68a3b9eb7b83881095c8995542f8904 (diff) | |
Implicit argument of Logic.eq become maximally inserted
This allow in particular to write eq instead of (@eq _) in
signatures of morphisms. I dont really see how this could
break existing code, no change in the stdlib was mandatory.
We'll check the contribs tomorrow...
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12379 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Lists')
| -rw-r--r-- | theories/Lists/StreamMemo.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Lists/StreamMemo.v b/theories/Lists/StreamMemo.v index e8b9358413..e10ad325f8 100644 --- a/theories/Lists/StreamMemo.v +++ b/theories/Lists/StreamMemo.v @@ -97,7 +97,7 @@ match v with | memo_mval m x => match is_eq n m with | left H => - match H in (@eq _ _ y) return (A y -> A n) with + match H in (eq _ y) return (A y -> A n) with | refl_equal => fun v1 : A n => v1 end | right _ => fun _ : A m => f n |
