hokein accepted this revision. hokein added a comment. it looks good to me, just a few optional nits.
================ Comment at: clang/include/clang/AST/DeclCXX.h:3618 + /// The source location of the 'enum' keyword. + SourceLocation EnumLoc; + /// 'qual::SomeEnum' as an EnumType, possibly with Elaborated/Typedef sugar. ---------------- nit: we only rename `EnumLocation` but not the `UsingLocation`, it is a little wired, I think either we rename both or keep both unchanged. ================ Comment at: clang/include/clang/AST/DeclCXX.h:3623 /// The enum EnumDecl *Enum; ---------------- I think we can probably get rid of the `Enum` field, since we are storing the EnumType and we can get the EnumDecl by `dyn_cast<EnumDecl>(EnumType->getType()->getAsTagDecl())` ================ Comment at: clang/lib/Sema/SemaDeclCXX.cpp:11857 assert(!SS->isInvalid() && "ScopeSpec is invalid"); - ParsedType TypeRep = getTypeName(II, IdentLoc, S, SS); - if (!TypeRep) { + TypeSourceInfo *TSI; + QualType EnumTy = GetTypeFromParser( ---------------- nit: adding `= nullptr` initializer Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134303/new/ https://reviews.llvm.org/D134303 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits