aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Intv.v
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2017-10-20 10:34:31 +0200
committerGitHub <noreply@github.com>2017-10-20 10:34:31 +0200
commitb4f59c4773206fbdf850611e6bbac1767d459dd5 (patch)
tree407ae2638eeca041e843c2fbbbaa75fd595df02e /lib/Intv.v
parent6a010b47b216c5a6b6e85abcfbba5339bab15dd6 (diff)
parentb26b8d219230ae912e3860dc906d34169af2a5c8 (diff)
downloadcompcert-b4f59c4773206fbdf850611e6bbac1767d459dd5.tar.gz
compcert-b4f59c4773206fbdf850611e6bbac1767d459dd5.zip
Merge pull request #191 from sigurdschneider/master
Ensure FunInd or Recdef is imported if functional induction is used. This is necessary for Coq 8.7.0.
Diffstat (limited to 'lib/Intv.v')
-rw-r--r--lib/Intv.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Intv.v b/lib/Intv.v
index 57d946e3..a11e619b 100644
--- a/lib/Intv.v
+++ b/lib/Intv.v
@@ -18,7 +18,7 @@
Require Import Coqlib.
Require Import Zwf.
Require Coq.Program.Wf.
-Require Recdef.
+Require Import Recdef.
Definition interv : Type := (Z * Z)%type.