mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -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:
@ -71,7 +71,8 @@ enum
|
||||
};
|
||||
|
||||
// Fifo Status Register
|
||||
union UCPStatusReg {
|
||||
union UCPStatusReg
|
||||
{
|
||||
struct
|
||||
{
|
||||
u16 OverflowHiWatermark : 1;
|
||||
@ -87,7 +88,8 @@ union UCPStatusReg {
|
||||
};
|
||||
|
||||
// Fifo Control Register
|
||||
union UCPCtrlReg {
|
||||
union UCPCtrlReg
|
||||
{
|
||||
struct
|
||||
{
|
||||
u16 GPReadEnable : 1;
|
||||
@ -104,7 +106,8 @@ union UCPCtrlReg {
|
||||
};
|
||||
|
||||
// Fifo Clear Register
|
||||
union UCPClearReg {
|
||||
union UCPClearReg
|
||||
{
|
||||
struct
|
||||
{
|
||||
u16 ClearFifoOverflow : 1;
|
||||
|
Reference in New Issue
Block a user