summaryrefslogtreecommitdiff
path: root/gmpxx.h
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2003-06-21 02:28:18 +0200
committerKevin Ryde <user42@zip.com.au>2003-06-21 02:28:18 +0200
commit40669ad84044e3efb1672dadc622ca55e905b114 (patch)
tree1a6a3e51bf713cbf8857f98d3c71de266474c6e7 /gmpxx.h
parent0bfa9e240a4cad76b41da41eb10ba6f9fb9f6eb9 (diff)
downloadgmp-40669ad84044e3efb1672dadc622ca55e905b114.tar.gz
* gmpxx.h (get_d): Remove comments about long double, double is
correct for get_d, a future long double form would be get_ld.
Diffstat (limited to 'gmpxx.h')
-rw-r--r--gmpxx.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gmpxx.h b/gmpxx.h
index b9c8c2fa9..087d0fe30 100644
--- a/gmpxx.h
+++ b/gmpxx.h
@@ -2651,7 +2651,7 @@ public:
signed long int get_si() const { return mpz_get_si(mp); }
unsigned long int get_ui() const { return mpz_get_ui(mp); }
- double get_d() const { return mpz_get_d(mp); } // should be long double
+ double get_d() const { return mpz_get_d(mp); }
// bool fits_schar_p() const { return mpz_fits_schar_p(mp); }
// bool fits_uchar_p() const { return mpz_fits_uchar_p(mp); }
@@ -2813,7 +2813,7 @@ public:
mpz_srcptr get_den_mpz_t() const { return mpq_denref(mp); }
mpz_ptr get_den_mpz_t() { return mpq_denref(mp); }
- double get_d() const { return mpq_get_d(mp); } // should be long double
+ double get_d() const { return mpq_get_d(mp); }
// compound assignments
__GMP_DECLARE_COMPOUND_OPERATOR(operator+=)
@@ -2964,7 +2964,7 @@ public:
signed long int get_si() const { return mpf_get_si(mp); }
unsigned long int get_ui() const { return mpf_get_ui(mp); }
- double get_d() const { return mpf_get_d(mp); } // should be long double
+ double get_d() const { return mpf_get_d(mp); }
// bool fits_schar_p() const { return mpf_fits_schar_p(mp); }
// bool fits_uchar_p() const { return mpf_fits_uchar_p(mp); }
@@ -3163,8 +3163,7 @@ public:
// signed long get_si() const { return mpfr_get_si(mp); }
// unsigned long get_ui() const { return mpfr_get_ui(mp); }
- double get_d() const // should be long double
- { return mpfr_get_d(mp, __gmp_default_rounding_mode); }
+ double get_d() const { return mpfr_get_d(mp, __gmp_default_rounding_mode); }
// check for exceptional values
bool is_inf() const { return mpfr_inf_p(mp); }