[clang-tools-extra] [clang-tidy] ignore uninitialized std::array in member init (PR #98134)
Congcong Cai via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 10 18:55:52 PST 2026
================
@@ -29,9 +29,10 @@ Options
.. option:: IgnoreArrays
- If set to `true`, the check will not warn about array members that are not
- zero-initialized during construction. For performance critical code, it may
- be important to not initialize fixed-size array members. Default is `false`.
+ If set to `true`, the check will not warn about array members (including
+ ``std::array``) that are not zero-initialized during construction. For
----------------
HerrCai0907 wrote:
maybe including c array and std::array
https://github.com/llvm/llvm-project/pull/98134
More information about the cfe-commits
mailing list