isVariableChangedByFunctionCall: Fix FN when constructor argument is const reference
This commit is contained in:
parent
3e231a9325
commit
5f4b06c0f4
|
@ -418,10 +418,10 @@ bool isVariableChangedByFunctionCall(const Token *tok, const Settings *settings,
|
||||||
const ::Scope *typeScope = tok->variable()->typeScope();
|
const ::Scope *typeScope = tok->variable()->typeScope();
|
||||||
if (typeScope) {
|
if (typeScope) {
|
||||||
for (std::list<Function>::const_iterator it = typeScope->functionList.begin(); it != typeScope->functionList.end(); ++it) {
|
for (std::list<Function>::const_iterator it = typeScope->functionList.begin(); it != typeScope->functionList.end(); ++it) {
|
||||||
if (!it->isConstructor() || it->argCount() != argCount)
|
if (!it->isConstructor() || it->argCount() < argCount)
|
||||||
continue;
|
continue;
|
||||||
const Variable *arg = it->getArgumentVar(argnr);
|
const Variable *arg = it->getArgumentVar(argnr);
|
||||||
if (arg && arg->isReference())
|
if (arg && arg->isReference() && !arg->isConst())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -1804,7 +1804,7 @@ private:
|
||||||
|
|
||||||
code = "class C {\n"
|
code = "class C {\n"
|
||||||
"public:\n"
|
"public:\n"
|
||||||
" C(int &i);\n"
|
" C(int &i);\n" // non-const argument => might be changed
|
||||||
"};\n"
|
"};\n"
|
||||||
"int f() {\n"
|
"int f() {\n"
|
||||||
" int x=1;\n"
|
" int x=1;\n"
|
||||||
|
@ -1812,6 +1812,17 @@ private:
|
||||||
" return x;\n"
|
" return x;\n"
|
||||||
"}";
|
"}";
|
||||||
ASSERT_EQUALS(false, testValueOfX(code, 8U, 1));
|
ASSERT_EQUALS(false, testValueOfX(code, 8U, 1));
|
||||||
|
|
||||||
|
code = "class C {\n"
|
||||||
|
"public:\n"
|
||||||
|
" C(const int &i);\n" // const argument => is not changed
|
||||||
|
"};\n"
|
||||||
|
"int f() {\n"
|
||||||
|
" int x=1;\n"
|
||||||
|
" C c(x);\n"
|
||||||
|
" return x;\n"
|
||||||
|
"}";
|
||||||
|
ASSERT_EQUALS(true, testValueOfX(code, 8U, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
void valueFlowForwardLambda() {
|
void valueFlowForwardLambda() {
|
||||||
|
|
Loading…
Reference in New Issue