Formatted the code [ci skip]
This commit is contained in:
parent
08041e3a0b
commit
7a6d7f7c2d
|
@ -2605,13 +2605,13 @@ static Analyzer::Result valueFlowForward(Token* top,
|
||||||
const std::list<ValueFlow::Value>& values,
|
const std::list<ValueFlow::Value>& values,
|
||||||
TokenList* const tokenlist,
|
TokenList* const tokenlist,
|
||||||
const Settings* settings)
|
const Settings* settings)
|
||||||
// *INDENT-ON*
|
// *INDENT-ON* {
|
||||||
|
Analyzer::Result result{};
|
||||||
|
for (const ValueFlow::Value& v : values)
|
||||||
{
|
{
|
||||||
Analyzer::Result result{};
|
result.update(valueFlowGenericForward(top, makeAnalyzer(exprTok, v, tokenlist), settings));
|
||||||
for (const ValueFlow::Value& v : values) {
|
}
|
||||||
result.update(valueFlowGenericForward(top, makeAnalyzer(exprTok, v, tokenlist), settings));
|
return result;
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void valueFlowReverse(Token* tok,
|
static void valueFlowReverse(Token* tok,
|
||||||
|
@ -6246,10 +6246,9 @@ static Analyzer::Result valueFlowContainerForwardRecursive(Token* top,
|
||||||
const Token* exprTok,
|
const Token* exprTok,
|
||||||
const ValueFlow::Value& value,
|
const ValueFlow::Value& value,
|
||||||
TokenList* tokenlist)
|
TokenList* tokenlist)
|
||||||
// *INDENT-ON*
|
// *INDENT-ON* {
|
||||||
{
|
ContainerExpressionAnalyzer a(exprTok, value, tokenlist);
|
||||||
ContainerExpressionAnalyzer a(exprTok, value, tokenlist);
|
return valueFlowGenericForward(top, a, tokenlist->getSettings());
|
||||||
return valueFlowGenericForward(top, a, tokenlist->getSettings());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static Analyzer::Result valueFlowContainerForward(Token* startToken,
|
static Analyzer::Result valueFlowContainerForward(Token* startToken,
|
||||||
|
|
|
@ -4322,7 +4322,7 @@ private:
|
||||||
" }\n"
|
" }\n"
|
||||||
" return name;\n"
|
" return name;\n"
|
||||||
"}\n");
|
"}\n");
|
||||||
ASSERT_EQUALS("", errout.str());
|
ASSERT_EQUALS("", errout.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
void bufferNotZeroTerminated() {
|
void bufferNotZeroTerminated() {
|
||||||
|
|
Loading…
Reference in New Issue