Skip to content

Commit ba714c4

Browse files
committed
1 parent 7d6baac commit ba714c4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/coq-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
coq-version: [ '8.18', '8.19', '8.20' , '9.0' , '9.1' ]
20+
coq-version: [ '8.19', '8.20' , '9.0' , '9.1' ]
2121
extra-gh-reportify: [ '' ]
2222
skip-validate: [ '' ]
2323
include:

.github/workflows/coq-opam-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
coq-version: ['dev', '8.20.0', '8.19.0', '8.18.0' , '9.0.0' , '9.1.0' ]
20+
coq-version: ['dev', '8.20.0', '8.19.0', '9.0.0' , '9.1.0' ]
2121
os: [{name: 'Ubuntu',
2222
runs-on: 'ubuntu-latest',
2323
ocaml-compiler: '4.14.0',

src/Rewriter/Language/Language.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Module Compilers.
296296
Declare Scope etype_scope.
297297
Delimit Scope etype_scope with etype.
298298
Bind Scope etype_scope with type.type.
299-
Global Arguments type.base {_} _%etype.
299+
Global Arguments type.base {_} _%_etype.
300300
Infix "->" := type.arrow : etype_scope.
301301
Infix "==" := type.eqv : type_scope.
302302
Module base.
@@ -911,7 +911,7 @@ Module Compilers.
911911
Module Export Notations.
912912
Declare Scope ident_scope.
913913
Delimit Scope ident_scope with ident.
914-
Global Arguments expr.Ident {base_type%type ident%function var%function t%etype} idc%ident.
914+
Global Arguments expr.Ident {base_type%_type ident%_function var%_function t%_etype} idc%_ident.
915915
Notation "# x" := (expr.Ident x) (only parsing) : expr_pat_scope.
916916
Notation "# x" := (@expr.Ident _ _ _ _ x) : expr_scope.
917917
Notation "x @ y" := (expr.App x%expr_pat y%expr_pat) (only parsing) : expr_pat_scope.

src/Rewriter/Rewriter/Rewriter.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ Module Compilers.
358358
| App (f x : pattern).
359359
End Raw.
360360

361-
Global Arguments Wildcard {base ident}%type t%ptype.
361+
Global Arguments Wildcard {base ident}%_type t%_ptype.
362362

363363
Fixpoint to_raw {base ident raw_ident}
364364
{to_raw_ident : forall t, ident t -> raw_ident}

src/Rewriter/Util/Decidable.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ From Coq Require Import BinNat.
1111
Local Open Scope type_scope.
1212

1313
Class Decidable (P : Prop) := dec : {P} + {~P}.
14-
Arguments dec _%type_scope {_}.
14+
Arguments dec _%_type_scope {_}.
1515
Notation DecidableRel R := (forall x y, Decidable (R x y)).
1616

1717
Global Instance hprop_eq_dec {A} `{DecidableRel (@eq A)} : IsHPropRel (@eq A) | 10.

0 commit comments

Comments
 (0)