7 Aug
2010
7 Aug
'10
6:57 p.m.
the snippet below doesn't compile due to a missing constructor. Changes to const std::string doesn't compile too. Is this intentionally or misuse it? How to fix it?
int main() { std::string rng; client::basic_input_iterator<char>::basic_iterator_type lower_first( rng.begin() ); client::basic_input_iterator<char>::type first( lower_first ); ... how to write it as convenient single liner? Thanks Olaf