No need to clear empty strings

This commit is contained in:
Dmitry-Me 2015-12-24 10:16:58 +03:00
parent cc987d8ff5
commit bd45c71d8d
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())