[clang] [clang][NFC] Fix attribute spelling in comment (PR #206645)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 29 22:00:16 PDT 2026
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
More information about the cfe-commits
mailing list