From fda66089000c1e0d6036af0ca018b8a0d734978f Mon Sep 17 00:00:00 2001 From: Alexander Kobel Date: Tue, 21 Jul 2015 13:55:03 +0200 Subject: [PATCH] comment out superfluous precondition check for unsigned M < 0 (avoid compiler warning) --- arb/const_khinchin.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arb/const_khinchin.c b/arb/const_khinchin.c index ca4b31c3..fb8f5a0d 100644 --- a/arb/const_khinchin.c +++ b/arb/const_khinchin.c @@ -38,7 +38,7 @@ arb_const_khinchin_eval_param(arb_t s, ulong N, ulong M, long prec) arb_init(h); if (N < 2) abort(); - if (M < 0) abort(); + /* if (M < 0) abort(); */ pows = _arb_vec_init(N - 2); @@ -121,4 +121,3 @@ arb_const_khinchin_eval(arb_t K, long prec) } ARB_DEF_CACHED_CONSTANT(arb_const_khinchin, arb_const_khinchin_eval) -