This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Error in stl_bvector.h and vector.tcc


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]