From e0aab135237aaa9334afe9acc9b519bbe2b53ae9 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 13 Feb 2017 11:46:23 +0100 Subject: Replace "Implicit Arguments" with "Arguments" This silences a warning of Coq 8.6. Some "Implicit Arguments" remain in flocq/ but I'd rather not diverge from the released version of flocq if at all possible. --- backend/RTLgen.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend/RTLgen.v') diff --git a/backend/RTLgen.v b/backend/RTLgen.v index 11da630b..cfbf57d6 100644 --- a/backend/RTLgen.v +++ b/backend/RTLgen.v @@ -107,8 +107,8 @@ Inductive res (A: Type) (s: state): Type := | Error: Errors.errmsg -> res A s | OK: A -> forall (s': state), state_incr s s' -> res A s. -Implicit Arguments OK [A s]. -Implicit Arguments Error [A s]. +Arguments OK [A s]. +Arguments Error [A s]. Definition mon (A: Type) : Type := forall (s: state), res A s. -- cgit