diff --git a/.clang-format b/.clang-format index 47d8400..954e775 100644 --- a/.clang-format +++ b/.clang-format @@ -18,7 +18,7 @@ AlignConsecutiveBitFields: PadOperators: true AlignConsecutiveDeclarations: Enabled: true - AcrossEmptyLines: true + AcrossEmptyLines: false AcrossComments: false AlignCompound: true PadOperators: true diff --git a/src/goff/goff_main.c b/src/goff/goff_main.c index 1d138a3..b85c0a8 100644 --- a/src/goff/goff_main.c +++ b/src/goff/goff_main.c @@ -10,5 +10,4 @@ // clang-format on - u64 main(int argc, char **argv) { return 0; } diff --git a/src/os/core/win32/os_core_win32.c b/src/os/core/win32/os_core_win32.c index 2f1c872..9d8ee91 100644 --- a/src/os/core/win32/os_core_win32.c +++ b/src/os/core/win32/os_core_win32.c @@ -1,5 +1,5 @@ // %os_hooks(implemented per-os) System and process info -internal OS_SystemInfo *os_get_system_info(void) { return &os_w32_state.system_info; } +internal OS_SystemInfo *os_get_system_info(void) { return &os_w32_state.system_info; } internal OS_ProcessInfo *os_get_process_info(void) { return &os_w32_state.process_info; }