make logic clearer, remove second call to size
This commit is contained in:
parent
663bb97fff
commit
4b67b8a5cf
@ -166,9 +166,9 @@ bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
||||
tokens.push(token); // popped one too many
|
||||
break;
|
||||
}
|
||||
if (tokens.size() < tokenCount) tokens.push(current);
|
||||
else return false;
|
||||
return tokens.size() <= tokenCount;
|
||||
bool available = tokens.size() < tokenCount;
|
||||
if (available) tokens.push(current);
|
||||
return available;
|
||||
}
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user