diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2018-04-24 09:46:03 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2018-04-24 09:46:03 +0000 |
commit | 424b935b3e1d27fc84fc363d1c3c45ca91ecc444 (patch) | |
tree | a7cd5266cd3879e6496ab2005ad16220cd6d7d07 /src/mpfr-gmp.h | |
parent | 51cb26a8b1a18397f371cdb45920b1ce46571516 (diff) | |
download | mpfr-424b935b3e1d27fc84fc363d1c3c45ca91ecc444.tar.gz |
[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
Diffstat (limited to 'src/mpfr-gmp.h')
-rw-r--r-- | src/mpfr-gmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |