diff options
| author | Emilio Jesus Gallego Arias | 2018-07-14 11:28:16 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-07-14 15:07:00 +0100 |
| commit | b63abc6b93f458bc7a2a16b45b8941a34c25cb03 (patch) | |
| tree | 17ca1c180d4ad594ea9803ff04bb681ad08fdf38 /interp/constrintern.ml | |
| parent | f824657b2b0b42ff02d0c07337db1607e13f359f (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/constrintern.ml')
| -rw-r--r-- | interp/constrintern.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/constrintern.ml b/interp/constrintern.ml index 18d6c1a5b7..9a4f2177f6 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 = |
