Skip to content

Commit b3fcd8a

Browse files
committed
astyle formatting
[ci skip]
1 parent 378e083 commit b3fcd8a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

lib/checknullpointer.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,8 @@ static std::string arithmeticTypeString(const Token *tok)
575575
return "arithmetic";
576576
}
577577

578-
void CheckNullPointer::pointerArithmeticError(const Token* tok, const ValueFlow::Value *value, bool inconclusive) {
578+
void CheckNullPointer::pointerArithmeticError(const Token* tok, const ValueFlow::Value *value, bool inconclusive)
579+
{
579580
std::string arithmetic = arithmeticTypeString(tok);
580581
std::string errmsg;
581582
if (tok && tok->str()[0] == '-') {
@@ -592,7 +593,8 @@ void CheckNullPointer::pointerArithmeticError(const Token* tok, const ValueFlow:
592593
inconclusive);
593594
}
594595

595-
void CheckNullPointer::redundantConditionWarning(const Token* tok, const ValueFlow::Value *value, const Token *condition, bool inconclusive) {
596+
void CheckNullPointer::redundantConditionWarning(const Token* tok, const ValueFlow::Value *value, const Token *condition, bool inconclusive)
597+
{
596598
std::string arithmetic = arithmeticTypeString(tok);
597599
std::string errmsg;
598600
if (tok && tok->str()[0] == '-') {

0 commit comments

Comments
 (0)