[clang-tools-extra] fix(clang-tools-extra/**.py): fix comparison to None (PR #94013)
Eisuke Kawashima via cfe-commits
cfe-commits at lists.llvm.org
Sun Jun 2 13:15:03 PDT 2024
================
@@ -1071,7 +1071,7 @@ bool IdentifierNamingCheck::isParamInMainLikeFunction(
if (!IsIntType(FDecl->parameters()[0]->getType()))
return false;
MainType Type = IsCharPtrPtr(FDecl->parameters()[1]->getType());
- if (Type == None)
+ if (Type is None)
----------------
e-kwsm wrote:
Thank you for your review.
https://github.com/llvm/llvm-project/pull/94013
More information about the cfe-commits
mailing list