Merge pull request #740 from Dmitry-Me/donClearEmptyStrings
No need to clear empty strings
This commit is contained in:
commit
ae740e28fd
|
@ -236,8 +236,8 @@ bool TokenList::createTokens(std::istream &code, const std::string& file0)
|
|||
if (!CurrentToken.empty()) {
|
||||
addtoken(CurrentToken, lineno, FileIndex, true);
|
||||
_back->isExpandedMacro(expandedMacro);
|
||||
CurrentToken.clear();
|
||||
}
|
||||
CurrentToken.clear();
|
||||
expandedMacro = true;
|
||||
continue;
|
||||
}
|
||||
|
@ -352,10 +352,9 @@ bool TokenList::createTokens(std::istream &code, const std::string& file0)
|
|||
if (!CurrentToken.empty()) {
|
||||
_back->isExpandedMacro(expandedMacro);
|
||||
expandedMacro = false;
|
||||
CurrentToken.clear();
|
||||
}
|
||||
|
||||
CurrentToken.clear();
|
||||
|
||||
if (ch == '\n') {
|
||||
if (_settings->terminated())
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue