
16 Oct
2009
16 Oct
'09
2:59 p.m.
Patryk Bukowinski wrote:
Hi all, I've some weird problem, its probably simple thing, but I'm probably to tired to find it out. g++ throws me following error : /getFunc.h: In static member function ‘static void Logic::setFunctionNameFromStringMsg(const char*, char*, unsigned int, unsigned int)’:/ / getFunc.h:86: error: ‘tok’ was not declared in this scope /
...
// boost::tokenizer<boost::char_separator<char>> tok(msg_copy, sep);//
Depending on the compiler version, try inserting a blank between the two greater than's at the end of your template parameters ala: boost::tokenizer<boost::char_separator<char> > tok(msg_copy, sep); Jeff