diff options
| author | Arnaud Spiwack | 2014-12-23 13:27:10 +0100 |
|---|---|---|
| committer | Arnaud Spiwack | 2014-12-23 13:40:05 +0100 |
| commit | 239fe70ae8a39f5c5619cf88f1ae264c31bda65e (patch) | |
| tree | 739ad87d4c4fb4cf1fe1c4dd7552b6fcb29bd9e9 /grammar | |
| parent | 8e1a7e3e6a4c84db18f6fd5334776489015b368d (diff) | |
Fix compilation error in some configurations.
This was due to the unqualified uses of "Lazy" being disambiguated in different manners. I just changed the constructor name to "Select".
Fixes #3877.
Diffstat (limited to 'grammar')
| -rw-r--r-- | grammar/q_coqast.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/q_coqast.ml4 b/grammar/q_coqast.ml4 index e3d910f321..c7d126c37d 100644 --- a/grammar/q_coqast.ml4 +++ b/grammar/q_coqast.ml4 @@ -291,7 +291,7 @@ let mlexpr_of_entry_type = function let mlexpr_of_match_lazy_flag = function | Tacexpr.General -> <:expr<Tacexpr.General>> - | Tacexpr.Lazy -> <:expr<Tacexpr.Lazy>> + | Tacexpr.Select -> <:expr<Tacexpr.Select>> | Tacexpr.Once -> <:expr<Tacexpr.Once>> let mlexpr_of_match_pattern = function |
