diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-11-05 11:18:46 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2007-11-05 11:18:46 +0000 |
commit | 03d060a20595c6d26a7d9c7704100878630a3965 (patch) | |
tree | 8a97a88b5990360bbd8663db2bd88abfa2343d76 /mpfr-impl.h | |
parent | a05a39b4b463797762e13dfe9972b5ea19af9467 (diff) | |
download | mpfr-03d060a20595c6d26a7d9c7704100878630a3965.tar.gz |
mpfr-impl.h: removed trailing spaces.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4948 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-rw-r--r-- | mpfr-impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h index 212bf572e..a3cb98e79 100644 --- a/mpfr-impl.h +++ b/mpfr-impl.h @@ -956,7 +956,7 @@ do { \ /* Set y to s*significand(x)*2^e, for example MPFR_ALIAS(y,x,1,MPFR_EXP(x)) sets y to |x|, and MPFR_ALIAS(y,x,MPFR_SIGN(x),0) sets y to x*2^f such - that 1/2 <= |y| < 1. Does not check y is in the valid exponent range. + that 1/2 <= |y| < 1. Does not check y is in the valid exponent range. WARNING! x and y share the same mantissa. So, some operations are not valid if x has been provided via an argument, e.g., trying to modify the mantissa of y, even temporarily, or calling mpfr_clear on y. @@ -968,7 +968,7 @@ do { \ MPFR_SIGN(y) = (s); \ MPFR_EXP(y) = (e); \ MPFR_MANT(y) = MPFR_MANT(x); \ - } while (0) + } while (0) /****************************************************** |