Remove useless condition

This commit is contained in:
Paul 2020-08-11 11:26:40 -05:00
parent 8c7e91c985
commit 96b74c57ff
1 changed files with 0 additions and 2 deletions

View File

@ -1053,8 +1053,6 @@ void Token::insertToken(const std::string &tokenStr, const std::string &original
scope = tok1->strAt(-3) + " :: " + scope;
tok1 = tok1->tokAt(-2);
}
if (!nextScopeNameAddition.empty() && !scope.empty()) nextScopeNameAddition += " :: ";
nextScopeNameAddition += scope;
}
}