From 415c5a5a28ac7035cfa33e5753af841a450bfab0 Mon Sep 17 00:00:00 2001 From: Jacques-Henri Jourdan Date: Sat, 6 Jul 2019 16:16:20 +0200 Subject: Fix compatibility with Coq 8.10 (#303) The generation of some fresh names changes in Coq 8.10 (https://github.com/coq/coq/pull/9160). The `Hint Mode` declaration that does not specify a hint database now triggers a warning. Specify the intended database and fix the "auto" tactics accordingly. --- MenhirLib/Automaton.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'MenhirLib/Automaton.v') diff --git a/MenhirLib/Automaton.v b/MenhirLib/Automaton.v index c310fc61..d5a19f35 100644 --- a/MenhirLib/Automaton.v +++ b/MenhirLib/Automaton.v @@ -99,9 +99,9 @@ Module Types(Import Init:AutInit). T term = last_symb_of_non_init_state s -> lookahead_action term | Reduce_act: production -> lookahead_action term | Fail_act: lookahead_action term. - Arguments Shift_act [term]. - Arguments Reduce_act [term]. - Arguments Fail_act [term]. + Arguments Shift_act {term}. + Arguments Reduce_act {term}. + Arguments Fail_act {term}. Inductive action := | Default_reduce_act: production -> action -- cgit