mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 10:39:45 -06:00
specify custom brace style to fix unions
BreakBeforeBraces: Allman apparently includes all styles, except for AfterUnion (which is false) when using clang-format -dump-config
This commit is contained in:
@ -17,7 +17,8 @@ enum
|
||||
|
||||
#pragma pack(push, 4)
|
||||
|
||||
union FileHeader {
|
||||
union FileHeader
|
||||
{
|
||||
struct
|
||||
{
|
||||
u32 fileId;
|
||||
@ -40,7 +41,8 @@ union FileHeader {
|
||||
u32 rawData[32];
|
||||
};
|
||||
|
||||
union FileFrameInfo {
|
||||
union FileFrameInfo
|
||||
{
|
||||
struct
|
||||
{
|
||||
u64 fifoDataOffset;
|
||||
|
Reference in New Issue
Block a user