]> gcc.gnu.org Git - gcc.git/commitdiff
iostream.cc, libio.h: Convert other uses of #ifdef _G_HAVE_PRINTF_FP to #if.
authorJason Merrill <jason@gcc.gnu.org>
Fri, 3 Oct 1997 17:14:05 +0000 (13:14 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 3 Oct 1997 17:14:05 +0000 (13:14 -0400)
* iostream.cc, libio.h: Convert other uses of #ifdef
_G_HAVE_PRINTF_FP to #if.

From-SVN: r15836

libio/ChangeLog
libio/iostream.cc
libio/libio.h

index 6ec865b0e47e6b45ba5e682571de68139b075e57..1c2003fce204ccb648e166c110dbbc8ed00caec0 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct  3 10:13:13 1997  Jason Merrill  <jason@yorick.cygnus.com>
+
+       * iostream.cc, libio.h: Convert other uses of #ifdef
+       _G_HAVE_PRINTF_FP to #if.
+
 1997-10-02  Brendan Kehoe  <brendan@lisa.cygnus.com>
 
        * iostream.cc (operator<<): Use `#if _G_HAVE_PRINTF_FP', not ifdef.
@@ -20,7 +25,7 @@ Sun Sep 28 12:04:21 1997  Jason Merrill  <jason@yorick.cygnus.com>
 
        * libio.h: Don't use _IO_LOCK_T if it's not defined.
 
-Fri Sep 26 20:56:41 1997  
+Fri Sep 26 20:56:41 1997  Ulrich Drepper  <drepper@rtl.cygnus.com>
 
        Based on a patch by H.J. Lu  (hjl@gnu.ai.mit.edu).
 
index 99ed592c539ba6659e84accac4b56df1a88540b0..f4b1e167ddede93337f72f3592c4c54f327e19de 100644 (file)
@@ -718,7 +718,7 @@ ostream& ostream::operator<<(long double n)
       if (prec <= 0 && !(flags() & ios::fixed))
        prec = 6; /* default */
 
-#ifdef _G_HAVE_PRINTF_FP
+#if _G_HAVE_PRINTF_FP
       // Do actual conversion.
       struct printf_info info = { prec: prec,
                                  width: width(0),
index 3d7bce3c18178e388ef293f6d2f9608298cf0b47..98d98c3249b4d8c5746da9af24a0b2b3126ccb99 100644 (file)
@@ -71,7 +71,7 @@
 # define const
 #endif
 #define _IO_UNIFIED_JUMPTABLES 1
-#ifndef _G_HAVE_PRINTF_FP
+#if !_G_HAVE_PRINTF_FP
 # define _IO_USE_DTOA 1
 #endif
 
This page took 0.080612 seconds and 5 git commands to generate.