Enrico Forestieri wrote: > Georg, I tried your test program on cygwin and, after adding an > "#include <iconv.h>" line, it fails to compile as follows: > > $ g++ stream2.cpp -o stream2 > stream2.cpp: In function `int main()': > stream2.cpp:230: error: `wcerr' is not a member of `std' > stream2.cpp:238: error: `wcerr' is not a member of `std' > stream2.cpp:241: error: `wcerr' is not a member of `std' > stream2.cpp:244: error: `wcerr' is not a member of `std' > > This seems to be a cygwin problem and I have no idea how to solve it.
std::wcerr should be declared in iostream. If gcc on cygwin does not have it then it is not standard conforming. Does it work if you comment tyhe wcerr calls? Georg
