From fdf9a8a09f73c531aa7fc0e96cad02dd6011e2c9 Mon Sep 17 00:00:00 2001 From: Jacques-Henri Jourdan Date: Mon, 4 May 2020 11:37:49 +0200 Subject: Coq-MenhirLib: explicit import ListNotations (#354) import ListNotations wherever it is necessary so that we do not rely on it being exported by Program. (See #352.) This is a backport from upstream: https://gitlab.inria.fr/fpottier/menhir/-/commit/53f94fa42c80ab1728383e9d2b19006180b14a78 --- MenhirLib/Interpreter_complete.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'MenhirLib/Interpreter_complete.v') diff --git a/MenhirLib/Interpreter_complete.v b/MenhirLib/Interpreter_complete.v index ec69592b..51f2524b 100644 --- a/MenhirLib/Interpreter_complete.v +++ b/MenhirLib/Interpreter_complete.v @@ -11,7 +11,8 @@ (* *) (****************************************************************************) -From Coq Require Import List Syntax Arith. +From Coq Require Import List Arith. +Import ListNotations. From Coq.ssr Require Import ssreflect. Require Import Alphabet Grammar. Require Automaton Interpreter Validator_complete. -- cgit