aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Herbelin2016-12-05 06:55:32 +0100
committerHugo Herbelin2017-03-23 22:13:57 +0100
commitac655f3c8eb348b84c5ba3e3ed41977d36849ea5 (patch)
treed9e221c759d6a1e8cfafecd697da0c3306df4852
parent45a411377244da33111cf5d7002df70de912bc64 (diff)
Removing a redundant line in the syntax of record fields.
-rw-r--r--parsing/g_constr.ml41
1 files changed, 0 insertions, 1 deletions
diff --git a/parsing/g_constr.ml4 b/parsing/g_constr.ml4
index 7316a4335a..22d4c68c35 100644
--- a/parsing/g_constr.ml4
+++ b/parsing/g_constr.ml4
@@ -223,7 +223,6 @@ GEXTEND Gram
record_fields:
[ [ f = record_field_declaration; ";"; fs = record_fields -> f :: fs
- | f = record_field_declaration; ";" -> [f]
| f = record_field_declaration -> [f]
| -> []
] ]