llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Matthias Wippich (Tsche) <details> <summary>Changes</summary> This patch fixes a typo/misspelling of the flag_enum attribute in a comment. --- Full diff: https://github.com/llvm/llvm-project/pull/206645.diff 1 Files Affected: - (modified) clang/include/clang/Sema/Sema.h (+1-1) ``````````diff diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index 2cf16fac83282..c1caa8592a26e 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/include/clang/Sema/Sema.h @@ -3572,7 +3572,7 @@ class Sema final : public SemaBase { /// correctly named definition after the renamed definition. llvm::SmallPtrSet<const NamedDecl *, 4> TypoCorrectedFunctionDefinitions; - /// A cache of the flags available in enumerations with the flag_bits + /// A cache of the flags available in enumerations with the flag_enum /// attribute. mutable llvm::DenseMap<const EnumDecl *, llvm::APInt> FlagBitsCache; `````````` </details> https://github.com/llvm/llvm-project/pull/206645 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
