map< string, string > breaks egcs.
Ben Scherrey
scherrey@gte.net
Wed Oct 7 15:52:00 GMT 1998
I'm running egcs-2.91.57 on an HP/Ux 10 box. The following code works:
-- file Test1.cpp
#include <stl.h>
#include <string>
map< int, int > Test;
-- eof
but if I build the following:
-- file Test2.cpp
#include <stl.h>
#include <string>
map< string, string > Test;
-- eof
with: g++ -c Test2.cpp
I get the following:
g++: Internal compiler error: program as got fatal signal 11
Help!!!!
Ben Scherrey
More information about the Gcc
mailing list