Hi all, I have the simple program below that aborts with the latest stdcxx but runs with no problems with g++. Am I missing something or is this a bug in stdcxx? #include #include #include int main () { std::istringstream a ("1"); std::istream_iterator i (a); std::istringstream b ("2"); std::istream_iterator j (b); assert (!(i == j)); } --Mark