
19 Feb
2006
19 Feb
'06
11:02 p.m.
I'm addressing some test failures in the serialization library and need some help from someone who is knowledgable regarding the implementation of the standard library as it is delivered with the GCC compiler. http://tinyurl.com/s4ohn Shows the error message which is provoked by the following test code: // test array of objects BOOST_STD_EXTENSION_NAMESPACE::hash_set<A> ahash_set; ... std::vector<A> tvec, tvec1; std::copy(ahash_set.begin(), ahash_set.end(), std::back_inserter(tvec)); // error starts here std::sort(tvec.begin(), tvec.end()); a) I can't see anything wrong with this. b) No other compilers complain c) I can't follow the error message So if anyone has some insight here, I'd be glad to hear it. Robert Ramey