aboutsummaryrefslogtreecommitdiff
path: root/src/Util
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2018-09-15 01:11:55 -0400
committerGravatar Jason Gross <jgross@mit.edu>2018-09-15 01:11:55 -0400
commit7ae0efa89026b0b0c19495bf2b085a90382ca4dd (patch)
tree517d5225e1ee7a0a8dd4bde00d7036588f736f55 /src/Util
parent9c5f398bf0fef00a10a36cdcf09778fe3c31dd9d (diff)
Fix 8.7 build
Diffstat (limited to 'src/Util')
-rw-r--r--src/Util/PrimitiveSigma.v2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Util/PrimitiveSigma.v b/src/Util/PrimitiveSigma.v
index 3551b479a..a3b124821 100644
--- a/src/Util/PrimitiveSigma.v
+++ b/src/Util/PrimitiveSigma.v
@@ -25,7 +25,6 @@ Module Import Primitive.
Module Import Notations.
Notation "{ x & P }" := (sigT (fun x => P)) : type_scope.
Notation "{ x : A & P }" := (sigT (A:=A) (fun x => P)) : type_scope.
- Notation "{ ' pat : A & P }" := (sigT (A:=A) (fun pat => P)) : type_scope.
Add Printing Let sigT.
End Notations.
@@ -91,7 +90,6 @@ Module Import Primitive.
End Primitive.
Notation "{ x & P }" := (sigT (fun x => P%primproj_type)) : primproj_type_scope.
Notation "{ x : A & P }" := (sigT (A:=A%primproj_type) (fun x => P%primproj_type)) : primproj_type_scope.
-Notation "{ ' pat : A & P }" := (sigT (A:=A%primproj_type) (fun pat => P%primproj_type)) : primproj_type_scope.
Add Printing Let sigT.
Import Primitive.Notations.