================ @@ -392,8 +402,16 @@ void ImplicitBoolConversionCheck::handleCastFromBool( if (const auto *BoolLiteral = dyn_cast<CXXBoolLiteralExpr>(Cast->getSubExpr()->IgnoreParens())) { - Diag << tooling::fixit::createReplacement( - *Cast, getEquivalentForBoolLiteral(BoolLiteral, DestType, Context)); + + const auto EquivalentForBoolLiteral = + getEquivalentForBoolLiteral(BoolLiteral, DestType, Context); + if (UseUpperCaseLiteralSuffix) { + Diag << tooling::fixit::createReplacement( + *Cast, EquivalentForBoolLiteral.upper()); + } else { + Diag << tooling::fixit::createReplacement(*Cast, + EquivalentForBoolLiteral); + } ---------------- 5chmidti wrote:
nit: do not use compound statements for single statements in control structures https://github.com/llvm/llvm-project/pull/104882 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits