Can anybody tell me why the code below should produce the error below? I'm
going nuts here! Am I missing something incredibly obvious and simple?
std::string::si ze_type idx;
std::string one_line;
..
..
..
idx = one_line.find(' \t', 0);
error C2059: syntax error : 'constant'
going nuts here! Am I missing something incredibly obvious and simple?
std::string::si ze_type idx;
std::string one_line;
..
..
..
idx = one_line.find(' \t', 0);
error C2059: syntax error : 'constant'
Comment