Skip to content

Commit 9985936

Browse files
committed
removed unnecessary checks not detected by tooling
1 parent 9648d84 commit 9985936

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

lib/cppcheck.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1099,8 +1099,8 @@ void CppCheck::checkNormalTokens(const Tokenizer &tokenizer)
10991099

11001100
if (mSettings.useSingleJob() || !mSettings.buildDir.empty()) {
11011101
// Analyse the tokens..
1102-
1103-
if (CTU::FileInfo * const fi1 = CTU::getFileInfo(tokenizer)) {
1102+
{
1103+
CTU::FileInfo * const fi1 = CTU::getFileInfo(tokenizer);
11041104
if (!mSettings.buildDir.empty())
11051105
mAnalyzerInformation.setFileInfo("ctu", fi1->toString());
11061106
if (mSettings.useSingleJob())

lib/templatesimplifier.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ void TemplateSimplifier::simplifyTemplateAliases()
13461346
const Token * const fromStart = args[argnr].first;
13471347
const Token * const fromEnd = args[argnr].second->previous();
13481348
Token *temp = TokenList::copyTokens(tok1, fromStart, fromEnd, true);
1349-
const bool tempOK(temp && temp != tok1->next());
1349+
const bool tempOK(temp != tok1->next());
13501350
tok1->deleteThis();
13511351
if (tempOK)
13521352
tok1 = temp; // skip over inserted parameters

lib/tokenize.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -2151,9 +2151,6 @@ void Tokenizer::simplifyTypedefCpp()
21512151

21522152
tok2 = TokenList::copyTokens(tok2, argStart, argEnd);
21532153
if (inTemplate) {
2154-
if (!tok2)
2155-
syntaxError(nullptr);
2156-
21572154
tok2 = tok2->next();
21582155
}
21592156

0 commit comments

Comments
 (0)