Error in stl_bvector.h and vector.tcc
Hillel Markowitz (Sabba)
sabba.hillel@verizon.net
Wed Jun 9 17:14:00 GMT 2004
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.
--
Said the fox to the fish, "Join me ashore."
The fish are the Jews, Torah is our water!
Hillel (Sabba) Markowitz
Sabba.Hillel@verizon.net, sabbahem@bcpl.net
More information about the Gcc
mailing list