Skip to content

Commit 0addf55

Browse files
committed
format
1 parent b68466f commit 0addf55

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang-tools-extra/clang-tidy/misc/BoolBitwiseOperationCheck.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ void BoolBitwiseOperationCheck::check(const MatchFinder::MatchResult &Result) {
100100
const NamedDecl *ND = getLHSNamedDeclIfCompoundAssign(MatchedExpr);
101101
return diag(MatchedExpr->getOperatorLoc(),
102102
"use logical operator '%0' for boolean %select{variable "
103-
"%2|values}1 instead of "
104-
"bitwise operator '%3'")
103+
"%2|values}1 instead of bitwise operator '%3'")
105104
<< translate(MatchedExpr->getOpcodeStr()) << (ND == nullptr) << ND
106105
<< MatchedExpr->getOpcodeStr();
107106
};

0 commit comments

Comments
 (0)