Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions lib/checkother.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1996,8 +1996,9 @@ void CheckOther::checkConstPointer()
nonConstPointers.emplace(var);
}
for (const Variable *p: pointers) {
bool inconclusive = false;
if (p->isArgument()) {
if (!p->scope() || !p->scope()->function || p->scope()->function->isImplicitlyVirtual(true) || p->scope()->function->hasVirtualSpecifier())
if (!p->scope() || !p->scope()->function || p->scope()->function->isImplicitlyVirtual(false, nullptr, &inconclusive) || p->scope()->function->hasVirtualSpecifier())
continue;
if (p->isMaybeUnused())
continue;
Expand All @@ -2014,12 +2015,12 @@ void CheckOther::checkConstPointer()
continue;
if (p->typeStartToken() && p->typeStartToken()->isSimplifiedTypedef() && !(Token::simpleMatch(p->typeEndToken(), "*") && !p->typeEndToken()->isSimplifiedTypedef()))
continue;
constVariableError(p, p->isArgument() ? p->scope()->function : nullptr);
constVariableError(p, p->isArgument() ? p->scope()->function : nullptr, &inconclusive);
}
}
}

void CheckOther::constVariableError(const Variable *var, const Function *function)
void CheckOther::constVariableError(const Variable *var, const Function *function, const bool *inconclusive)
{
if (!var) {
reportError(nullptr, Severity::style, "constParameter", "Parameter 'x' can be declared with const");
Expand Down Expand Up @@ -2050,7 +2051,7 @@ void CheckOther::constVariableError(const Variable *var, const Function *functio
id += "Pointer";
}

reportError(std::move(errorPath), Severity::style, id.c_str(), message, CWE398, Certainty::normal);
reportError(std::move(errorPath), Severity::style, id.c_str(), message, CWE398, (inconclusive && *inconclusive) ? Certainty::inconclusive : Certainty::normal);
}

//---------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/checkother.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class CPPCHECKLIB CheckOther : public Check {
void suspiciousFloatingPointCastError(const Token *tok);
void invalidPointerCastError(const Token* tok, const std::string& from, const std::string& to, bool inconclusive, bool toIsInt);
void passedByValueError(const Variable* var, bool inconclusive, bool isRangeBasedFor = false);
void constVariableError(const Variable *var, const Function *function);
void constVariableError(const Variable *var, const Function *function, const bool *inconclusive = nullptr);
void constStatementError(const Token *tok, const std::string &type, bool inconclusive);
void signedCharArrayIndexError(const Token *tok);
void unknownSignCharArrayIndexError(const Token *tok);
Expand Down
9 changes: 7 additions & 2 deletions lib/symboldatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4810,8 +4810,10 @@ void Function::addArguments(const Scope *scope)
}
}

bool Function::isImplicitlyVirtual(bool defaultVal, bool* pFoundAllBaseClasses) const
bool Function::isImplicitlyVirtual(bool defaultVal, bool* pFoundAllBaseClasses, bool* inconclusive) const
{
if (inconclusive)
*inconclusive = false; // assume not inconclusive.
if (hasVirtualSpecifier() || hasOverrideSpecifier() || hasFinalSpecifier())
return true;
bool foundAllBaseClasses = true;
Expand All @@ -4821,7 +4823,10 @@ bool Function::isImplicitlyVirtual(bool defaultVal, bool* pFoundAllBaseClasses)
*pFoundAllBaseClasses = foundAllBaseClasses;
if (foundAllBaseClasses) //If we've seen all the base classes and none of the above were true then it must not be virtual
return false;
return defaultVal; //If we can't see all the bases classes then we can't say conclusively
//If we can't see all the bases classes then we can't say conclusively, set inconclusive (if possible) and return default value
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't inconclusive redundant since there is pFoundAllBaseClasses already?

if (inconclusive)
*inconclusive = true;
return defaultVal;
}

std::vector<const Function*> Function::getOverloadedFunctions() const
Expand Down
2 changes: 1 addition & 1 deletion lib/symboldatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ class CPPCHECKLIB Function {
void addArguments(const Scope *scope);

/** @brief check if this function is virtual in the base classes */
bool isImplicitlyVirtual(bool defaultVal = false, bool* pFoundAllBaseClasses = nullptr) const;
bool isImplicitlyVirtual(bool defaultVal = false, bool* pFoundAllBaseClasses = nullptr, bool* inconclusive = nullptr) const;

std::vector<const Function*> getOverloadedFunctions() const;

Expand Down
18 changes: 18 additions & 0 deletions test/testother.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4676,6 +4676,24 @@ class TestOther : public TestFixture {
ASSERT_EQUALS("[test.cpp:1:18]: (style) Parameter 'p' can be declared as pointer to const [constParameterPointer]\n"
"[test.cpp:4:18]: (style) Parameter 'p' can be declared as pointer to const [constParameterPointer]\n",
errout_str());

check("class A {\n"
"public:\n"
" void func01(QPoint* pt1) {\n"
" if (nullptr == pt1) {}\n"
" }\n"
"};\n");
ASSERT_EQUALS("[test.cpp:3:25]: (style) Parameter 'pt1' can be declared as pointer to const [constParameterPointer]\n",
errout_str());

check("class B : public QObject {\n"
"public:\n"
" void func02(QPoint* pt2) {\n"
" if (nullptr == pt2) {}\n"
" }\n"
"};\n");
ASSERT_EQUALS("[test.cpp:3:25]: (style, inconclusive) Parameter 'pt2' can be declared as pointer to const [constParameterPointer]\n",
errout_str());
}

void constArray() {
Expand Down
Loading