Description
formatting of the MEMBER
macro oscillates between the two ways shown below each time it is reformatted with 19.1.0-rc3 and also main as of 114ff99. version 18 consistently chose the first one, fwiw.
empty .clang-format
struct MyStruct : Base {
int foo;
#define MEMBER(NAME) \
NAME { "" }
MEMBER(bar);
};
struct MyStruct : Base {
int foo;
#define MEMBER(NAME) NAME{""}
MEMBER(bar);
};