4 Apr
2012
4 Apr
'12
12:10 p.m.
On 4/4/2012 6:40 AM, Igor R wrote:
std::string s = *i; ////////////////////////////COMPILER ERROR: cannot convert from 'const boost::iterator_range<IteratorT>' to 'const std::basic_string<_Elem,_Traits,_Ax>' std::cout<< s<< '\n';
std::string s(i->begin(), i->end());
or use copy_rangestd::string(*i) which is defined in