[clang] [Clang][Sema] Fix missing warning when comparing mismatched enums in … (PR #81418)

Shafik Yaghmour via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 22 11:57:23 PST 2024


================
@@ -263,6 +263,14 @@ namespace {
   }
 }
 
+QualType Expr::getEnumCoercedType(const ASTContext &Ctx) const {
+  bool NotEnumType = dyn_cast<EnumType>(this->getType()) == nullptr;
+  if (NotEnumType)
----------------
shafik wrote:

This look redundant since `getEnumConstantDecl()` will just return `nullptr`

https://github.com/llvm/llvm-project/pull/81418


More information about the cfe-commits mailing list