format code issue: break in macro, [#13761](https://github.com/microsoft/vscode-cpptools/issues/13761) AlignArrayOfStructures: Left ORIGIN: ```c const struct reg aa[] __CMN_RODATA = { { abc, 0, format, code }, { abcd2, 0, format, code }, { aaaa, 0, why, why }, { whyyyy, 0, why, why }, }; ``` add macro: ```c const struct reg aa[] __CMN_RODATA = { #if A { abc, 0, format, code }, { abcd2, 0, format, code }, #else { aaaa, 0, why, why }, { whyyyy, 0, why, why }, #endif }; ``` if 0: