|
From: John W. <j_w...@us...> - 2004-12-17 11:47:35
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15319 Modified Files: Lexer.h Log Message: reader has become a pointer instead of a reference The TokenList tokens has been removed as a member of Lexer because Lexer must not own the TokenList it parses. For full explaination see comments of Queryparser.cpp 1.7 TokenList& Lexer::Lex() has been replaced by the method void Lexer::Lex(TokenList *tokenList). So now Lexer will use a TokenList supplied by the invoker. |