aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2018-07-14 11:28:16 +0100
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2018-07-14 15:07:00 +0100
commitb63abc6b93f458bc7a2a16b45b8941a34c25cb03 (patch)
tree17ca1c180d4ad594ea9803ff04bb681ad08fdf38 /interp
parentf824657b2b0b42ff02d0c07337db1607e13f359f (diff)
[build] Build Coq and plugins with `-strict-sequence`
Fixes #8067. This is becoming the default in many developments, so it makes sense to require it too, both for Coq and for Plugins.
Diffstat (limited to 'interp')
-rw-r--r--interp/constrintern.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/constrintern.ml b/interp/constrintern.ml
index 18d6c1a5b..9a4f2177f 100644
--- a/interp/constrintern.ml
+++ b/interp/constrintern.ml
@@ -552,7 +552,7 @@ let find_fresh_name renaming (terms,termlists,binders,binderlists) avoid id =
let is_var store pat =
match DAst.get pat with
- | PatVar na -> store na; true
+ | PatVar na -> ignore(store na); true
| _ -> false
let out_var pat =