[clang-tools-extra] [llvm] [clang] [clang] Fix false positive -Wmissing-field-initializer for anonymous unions (PR #70829)
Mariya Podchishchaeva via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 7 03:01:15 PST 2023
================
@@ -465,7 +460,8 @@ class InitListChecker {
void FillInEmptyInitForField(unsigned Init, FieldDecl *Field,
const InitializedEntity &ParentEntity,
InitListExpr *ILE, bool &RequiresSecondPass,
- bool FillWithNoInit = false);
+ bool FillWithNoInit = false,
+ bool MaybeEmitMFIWarning = true);
----------------
Fznamznon wrote:
Okay, I changed the name.
https://github.com/llvm/llvm-project/pull/70829
More information about the llvm-commits
mailing list