summaryrefslogtreecommitdiff
path: root/src/mpfr-impl.h
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2012-09-04 13:01:41 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2012-09-04 13:01:41 +0000
commit08249c6741dc5687a6d40904e09f868b7f3ad976 (patch)
treeda781855578e0a3e75d1aca54cc45410d6550b4a /src/mpfr-impl.h
parentb08e4df7060a66701336cf8f2c605f69f0c94247 (diff)
downloadmpfr-08249c6741dc5687a6d40904e09f868b7f3ad976.tar.gz
revert changeset r8412 (_Decimal64 might be defined in C++, but not as a macro)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8414 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/mpfr-impl.h')
-rw-r--r--src/mpfr-impl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mpfr-impl.h b/src/mpfr-impl.h
index ffafd4a0a..b27efcb0e 100644
--- a/src/mpfr-impl.h
+++ b/src/mpfr-impl.h
@@ -689,18 +689,8 @@ typedef union {
******************************************************/
#ifdef MPFR_WANT_DECIMAL_FLOATS
-
-/* _Decimal64 is not defined in C++,
- cf http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51364 */
-#if defined (__cplusplus) && defined(__GNUC__)
-#ifndef _Decimal64
-typedef float _Decimal64 __attribute__((mode(DD)));
-#endif
-#endif
-
/* to cast between binary64 and decimal64 */
union ieee_double_decimal64 { double d; _Decimal64 d64; };
-
#endif /* MPFR_WANT_DECIMAL_FLOATS */
/******************************************************