up vote 1 down vote favorite
share [g+] share [fb]

What is going on?

#include <iostream>
#include <iterator>
#include <sstream>

int main() {
    std::basic_stringbuf<unsigned char> buf;
    std::basic_istream<unsigned char> stream(&buf);
    // the next line throws std::bad_cast on g++ 4.4
    std::istream_iterator<unsigned char, unsigned char> it(stream);
}

I've tried stream.write(some_array, sizeof(some_array) before constructing the iterator, to no avail.

Thanks.

link|improve this question

Passes without any hiccups on VS8, but I wouldn't believe it !! – DumbCoder Aug 31 '10 at 14:39
On VS10 too (just tested). – Pedro d'Aquino Aug 31 '10 at 14:44
feedback

2 Answers

up vote 1 down vote accepted

It throws from sentry object's constructor where it checks the ctype facet on the stream (it needs it so it can skip whitespace), which happens to be NULL because it's not defined for unsigned chars.

Do you need to handle whitespace on that stream? If not, change to

std::istreambuf_iterator<unsigned char> it(stream);
link|improve this answer
Yes, this does it. Alternatively, I guess stream.unsetf(std::ios::skipws) has the same effect. Thanks. – Pedro d'Aquino Aug 31 '10 at 14:54
feedback

shouldnt it be:

std::istream_iterator<unsigned char> it(stream);
link|improve this answer
That doesn't compile. ("no matching function for call to std::istream_iterator...") – Pedro d'Aquino Aug 31 '10 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.