diff options
| author | Enrico | 2018-03-20 22:23:39 +0100 |
|---|---|---|
| committer | GitHub | 2018-03-20 22:23:39 +0100 |
| commit | ae8e96a37644a4d1cded1b13acf031d1325b68b4 (patch) | |
| tree | 12b1367edce028767f8e9ebea319b7788705ae64 /mathcomp/algebra/ssrint.v | |
| parent | 3d59940ff4601713e8395f6b7e5c525501183731 (diff) | |
| parent | 2525c33691e25f837b7dca31d4c702199b3dbc5d (diff) | |
Merge pull request #185 from jashug/deprecate-arguments-scope
Change deprecated Arguments Scope to Arguments
Diffstat (limited to 'mathcomp/algebra/ssrint.v')
| -rw-r--r-- | mathcomp/algebra/ssrint.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mathcomp/algebra/ssrint.v b/mathcomp/algebra/ssrint.v index 752be45..cbfd593 100644 --- a/mathcomp/algebra/ssrint.v +++ b/mathcomp/algebra/ssrint.v @@ -362,7 +362,7 @@ Canonical int_iDomain := Definition absz m := match m with Posz p => p | Negz n => n.+1 end. Notation "m - n" := (@GRing.add int_ZmodType m%N (@GRing.opp int_ZmodType n%N)) : distn_scope. -Arguments Scope absz [distn_scope]. +Arguments absz _%distn_scope. Local Notation "`| m |" := (absz m) : nat_scope. Module intOrdered. @@ -1600,7 +1600,7 @@ Module Export IntDist. Notation "m - n" := (@GRing.add int_ZmodType m%N (@GRing.opp int_ZmodType n%N)) : distn_scope. -Arguments Scope absz [distn_scope]. +Arguments absz _%distn_scope. Notation "`| m |" := (absz m) : nat_scope. Coercion Posz : nat >-> int. |
