From 424b935b3e1d27fc84fc363d1c3c45ca91ecc444 Mon Sep 17 00:00:00 2001 From: vlefevre Date: Tue, 24 Apr 2018 09:46:03 +0000 Subject: [src/mpfr-gmp.h] Clarified a comment (the "if" is part of the code, not the English word). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@12646 280ebfd0-de03-0410-8827-d642c229c3f4 --- src/mpfr-gmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mpfr-gmp.h') diff --git a/src/mpfr-gmp.h b/src/mpfr-gmp.h index 00a5d26e5..d09f78c3e 100644 --- a/src/mpfr-gmp.h +++ b/src/mpfr-gmp.h @@ -132,7 +132,7 @@ void *alloca (size_t); /* MP_LIMB macros. Note: GMP now also has the MPN_FILL macro, and GMP's MPN_ZERO(dst,n) is - defined as if (n) MPN_FILL(dst, n, 0). */ + defined as "if (n) MPN_FILL(dst, n, 0);". */ #define MPN_ZERO(dst, n) memset((dst), 0, (n)*MPFR_BYTES_PER_MP_LIMB) #define MPN_COPY(dst,src,n) \ do \ -- cgit v1.2.1