Error in stl_bvector.h and vector.tcc
Marcus Meissner
meissner@suse.de
Wed Jun 9 22:09:00 GMT 2004
On Wed, Jun 09, 2004 at 01:14:35PM -0400, Hillel Markowitz wrote:
> The following code causes gcc-3.4.0 to find a compile error in stl_bvector.h and vector.tcc
>
> #include <fstream>
>
> #ifdef __cplusplus
> extern "C"
> {
> #ifndef max
> #define max(x,y) ( ((x) > (y)) ? (x) : (y) )
> #endif
>
> #ifndef min
> #define min(x,y) ( ((x) < (y)) ? (x) : (y) )
> #endif
> #ifdef __cplusplus
> }
> #endif
>
> #include <vector>
> using namespace std;
>
> int main(int argc, char **argv)
> {
> }
>
> If the vector line is moved before the max, min definitions, the error does not occur. if the fstream include is removed, the error does not occur.
Where is the #endif for the first #ifdef __cplusplus ?
Ciao, Marcus
More information about the Gcc
mailing list