15 Jan
2002
15 Jan
'02
1:47 p.m.
From: "hicks"
Dear boost users
I am trying to use the boost tokenizer with Borland Builder C++ 5 compiler.
This far compiles fine: boost::tokenizer<> tok(std::string(ac0));
All further references to tok such as tok.assign(std::string(ac0)) or tok.begin()
result in an error message " Structure requires on the left side of . or .*"
boost::tokenizer<> tok(std::string(ac0)); declares a function named 'tok' that returns a boost::tokenizer<> and has one parameter of type std::string named 'ac0'. The parentheses around ac0 are ignored. -- Peter Dimov Multi Media Ltd.