mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -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:
@ -70,7 +70,8 @@ enum
|
||||
};
|
||||
|
||||
// AI Control Register
|
||||
union AICR {
|
||||
union AICR
|
||||
{
|
||||
AICR() { hex = 0; }
|
||||
AICR(u32 _hex) { hex = _hex; }
|
||||
struct
|
||||
@ -90,7 +91,8 @@ union AICR {
|
||||
};
|
||||
|
||||
// AI Volume Register
|
||||
union AIVR {
|
||||
union AIVR
|
||||
{
|
||||
AIVR() { hex = 0; }
|
||||
struct
|
||||
{
|
||||
|
Reference in New Issue
Block a user