Thread: C++ and bool constants (was Re: [NOVICE] gcc 3.0.1)

C++ and bool constants (was Re: [NOVICE] gcc 3.0.1)

From
Tom Lane
Date:
Leandro Fanzone <leandro@hasar.com> writes:
> I have compiled PostgreSQL 7.1.2 with gcc 3.0.1, and have the following
> problem: if I include first libpq++.h before iostream, id est:
> #include <libpq++.h>
> #include <iostream>
> the compiler complains:

> This is because somewhere in PostgreSQL you have the following code:

> #ifndef true
> #define true ((bool)1)
> #endif

Yeah.  c.h has

#ifndef __cplusplus
#ifndef bool
typedef char bool;
#endif     /* ndef bool */
#endif     /* not C++ */

#ifndef true
#define true    ((bool) 1)
#endif

#ifndef false
#define false    ((bool) 0)
#endif

It's been like that for quite some time, but it's always struck me as
bizarre: if we're willing to trust a C++ compiler to provide type
bool, why would we not trust it to provide the literals true and false
as well?  ISTM the code should read

#ifndef __cplusplus

#ifndef bool
typedef char bool;
#endif

#ifndef true
#define true    ((bool) 1)
#endif

#ifndef false
#define false    ((bool) 0)
#endif

#endif     /* not C++ */

Does anyone have an objection to this?
        regards, tom lane


Re: C++ and bool constants (was Re: [NOVICE] gcc 3.0.1)

From
Bruce Momjian
Date:
I like the change.

> Leandro Fanzone <leandro@hasar.com> writes:
> > I have compiled PostgreSQL 7.1.2 with gcc 3.0.1, and have the following
> > problem: if I include first libpq++.h before iostream, id est:
> > #include <libpq++.h>
> > #include <iostream>
> > the compiler complains:
> 
> > This is because somewhere in PostgreSQL you have the following code:
> 
> > #ifndef true
> > #define true ((bool)1)
> > #endif
> 
> Yeah.  c.h has
> 
> #ifndef __cplusplus
> #ifndef bool
> typedef char bool;
> #endif     /* ndef bool */
> #endif     /* not C++ */
> 
> #ifndef true
> #define true    ((bool) 1)
> #endif
> 
> #ifndef false
> #define false    ((bool) 0)
> #endif
> 
> It's been like that for quite some time, but it's always struck me as
> bizarre: if we're willing to trust a C++ compiler to provide type
> bool, why would we not trust it to provide the literals true and false
> as well?  ISTM the code should read
> 
> #ifndef __cplusplus
> 
> #ifndef bool
> typedef char bool;
> #endif
> 
> #ifndef true
> #define true    ((bool) 1)
> #endif
> 
> #ifndef false
> #define false    ((bool) 0)
> #endif
> 
> #endif     /* not C++ */
> 
> Does anyone have an objection to this?
> 
>             regards, tom lane
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
> 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


Re: C++ and bool constants (was Re: [NOVICE] gcc 3.0.1)

From
Leandro Fanzone
Date:
Fine for me also.

Leandro.

Tom Lane wrote:

> Leandro Fanzone <leandro@hasar.com> writes:
> > I have compiled PostgreSQL 7.1.2 with gcc 3.0.1, and have the following
> > problem: if I include first libpq++.h before iostream, id est:
> > #include <libpq++.h>
> > #include <iostream>
> > the compiler complains:
>
> > This is because somewhere in PostgreSQL you have the following code:
>
> > #ifndef true
> > #define true ((bool)1)
> > #endif
>
> Yeah.  c.h has
>
> #ifndef __cplusplus
> #ifndef bool
> typedef char bool;
> #endif   /* ndef bool */
> #endif   /* not C++ */
>
> #ifndef true
> #define true    ((bool) 1)
> #endif
>
> #ifndef false
> #define false   ((bool) 0)
> #endif
>
> It's been like that for quite some time, but it's always struck me as
> bizarre: if we're willing to trust a C++ compiler to provide type
> bool, why would we not trust it to provide the literals true and false
> as well?  ISTM the code should read
>
> #ifndef __cplusplus
>
> #ifndef bool
> typedef char bool;
> #endif
>
> #ifndef true
> #define true    ((bool) 1)
> #endif
>
> #ifndef false
> #define false   ((bool) 0)
> #endif
>
> #endif   /* not C++ */
>
> Does anyone have an objection to this?
>
>                         regards, tom lane