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_correct.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'MenhirLib/Interpreter_correct.v') diff --git a/MenhirLib/Interpreter_correct.v b/MenhirLib/Interpreter_correct.v index 1325f610..083be5b7 100644 --- a/MenhirLib/Interpreter_correct.v +++ b/MenhirLib/Interpreter_correct.v @@ -11,7 +11,8 @@ (* *) (****************************************************************************) -From Coq Require Import List Syntax. +From Coq Require Import List. +Import ListNotations. Require Import Alphabet. Require Grammar Automaton Interpreter. From Coq.ssr Require Import ssreflect. -- cgit