Re: [PATCH 5/8] standardize brace placement in struct definitions
From: Junio C Hamano <hidden> Date: 2016-06-15 22:50:48
Jonathan Nieder [off-list ref] writes:
In a struct definitions, unlike functions, the prevailing style is for
the opening brace to go on the same line as the struct name, like so:
struct foo {
int bar;
char *baz;
};