Merge pull request #740 from Dmitry-Me/donClearEmptyStrings

No need to clear empty strings
This commit is contained in:
PKEuS 2015-12-24 09:37:20 +01:00
commit ae740e28fd
1 changed files with 2 additions and 3 deletions

View File

@ -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();
}
expandedMacro = true;
continue;
}
@ -352,9 +352,8 @@ bool TokenList::createTokens(std::istream &code, const std::string& file0)
if (!CurrentToken.empty()) {
_back->isExpandedMacro(expandedMacro);
expandedMacro = false;
}
CurrentToken.clear();
}
if (ch == '\n') {
if (_settings->terminated())