Add IgnoreBaseInCopyConstructors to .clang-tidy

gcc issues warnings on copy constructors that do not explicitly
initialize the base class.
This commit is contained in:
Kazu Hirata 2022-01-03 13:41:32 -08:00
parent 4aba7e901e
commit 1bb65bd58f
1 changed files with 2 additions and 1 deletions

View File

@ -16,4 +16,5 @@ CheckOptions:
value: CamelCase
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 1
- key: readability-redundant-member-init.IgnoreBaseInCopyConstructors
value: 1