aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/ring/LegacyArithRing.v
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ring/LegacyArithRing.v')
-rw-r--r--plugins/ring/LegacyArithRing.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ring/LegacyArithRing.v b/plugins/ring/LegacyArithRing.v
index 9259d490f..fd5bcd935 100644
--- a/plugins/ring/LegacyArithRing.v
+++ b/plugins/ring/LegacyArithRing.v
@@ -15,7 +15,7 @@ Require Import Eqdep_dec.
Open Local Scope nat_scope.
-Unboxed Fixpoint nateq (n m:nat) {struct m} : bool :=
+Fixpoint nateq (n m:nat) {struct m} : bool :=
match n, m with
| O, O => true
| S n', S m' => nateq n' m'