Skip to content

Commit 39f94f3

Browse files
authored
valueflow.cpp: fixed selfcheck suppression (#4940)
1 parent 93b4de3 commit 39f94f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/valueflow.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7727,7 +7727,7 @@ static void addToErrorPath(ValueFlow::Value& value, const ValueFlow::Value& from
77277727
});
77287728
}
77297729

7730-
static std::vector<Token*> findAllUsages(const Variable* var, Token* start) // cppcheck-suppress constParameter // FP
7730+
static std::vector<Token*> findAllUsages(const Variable* var, Token* start) // cppcheck-suppress constParameterPointer // FP
77317731
{
77327732
std::vector<Token*> result;
77337733
const Scope* scope = var->scope();

0 commit comments

Comments
 (0)