commit | 1bb65bd58fb24db0f48df830274581fa3be7e489 | [log] [tgz] |
---|---|---|
author | Kazu Hirata <[email protected]> | Mon Jan 03 21:41:32 2022 |
committer | Kazu Hirata <[email protected]> | Mon Jan 03 21:41:32 2022 |
tree | 3eef757c0be9e90d3f84a0b6f44bfd752713786a | |
parent | 4aba7e901e60d168bdb32ab37e9f281f551d47d3 [diff] |
Add IgnoreBaseInCopyConstructors to .clang-tidy gcc issues warnings on copy constructors that do not explicitly initialize the base class.
diff --git a/.clang-tidy b/.clang-tidy index 3f2f2c0..1d4438d 100644 --- a/.clang-tidy +++ b/.clang-tidy
@@ -16,4 +16,5 @@ value: CamelCase - key: readability-identifier-naming.IgnoreMainLikeFunctions value: 1 - + - key: readability-redundant-member-init.IgnoreBaseInCopyConstructors + value: 1