mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -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:
@ -7,7 +7,8 @@
|
||||
#include "Common/BitField.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
union TestUnion {
|
||||
union TestUnion
|
||||
{
|
||||
u64 hex;
|
||||
|
||||
BitField<0, 64, u64> full_u64; // spans whole storage
|
||||
|
Reference in New Issue
Block a user