Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > On Sun, Jul 10, 2022 at 10:00 PM Han Xin <chiyutianyi@xxxxxxxxx> wrote: >> On Sun, Jul 10, 2022 at 4:12 PM Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: >> > On macOS High Sierra (10.13), Apple's `clang`[1] complains about missing >> > braces around initialization of a subobject, which is problematic when >> > building with `DEVELOPER=YesPlease` which enables `-Werror`: >> > >> > builtin/unpack-objects.c:388:26: error: suggest braces around >> > initialization of subobject [-Werror,-Wmissing-braces] >> > git_zstream zstream = { 0 }; >> > >> > [1]: `cc --version` => "Apple LLVM version 10.0.0 (clang-1000.10.44.4)" >> > - git_zstream zstream = { 0 }; >> > + git_zstream zstream = {{ 0 }}; >> >> Not a comment, just wondering, when should I use "{ { 0 } }" and when >> should I use "{ 0 }"? >> >> I didn't get the error with "Apple clang version 13.0.0 >> (clang-1300.0.29.30)", because it's >> a higher version ? > > I don't have a good answer. More modern `clang` versions don't seem to > complain about plain old `{0}` here, but the older `clang` with which > I'm stuck does complain. I think, from the language-lawyer perspective, "{ 0 }" is how we should spell these initialization when we are not using designated initializers, even when the first member of the struct happens to be a struct. The older clang that complains at you is simply buggy, and I think we had the same issue with older sparse.