https://github.com/victorvianna updated
https://github.com/llvm/llvm-project/pull/140888
>From 84099188f343220d48b56f164c7f541d8515f629 Mon Sep 17 00:00:00 2001
From: Victor Hugo Vianna Silva
Date: Thu, 22 May 2025 10:47:09 +0100
Subject: [PATCH] ClangFormat: Insert braces & newline for Chromiu
https://github.com/victorvianna deleted
https://github.com/llvm/llvm-project/pull/140888
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -1892,6 +1892,9 @@ FormatStyle getChromiumStyle(FormatStyle::LanguageKind
Language) {
ChromiumStyle.IncludeStyle.IncludeBlocks =
tooling::IncludeStyle::IBS_Preserve;
+ ChromiumStyle.InsertBraces = true;
victorvianna wrote:
Done
https://github.co
@@ -1892,6 +1892,9 @@ FormatStyle getChromiumStyle(FormatStyle::LanguageKind
Language) {
ChromiumStyle.IncludeStyle.IncludeBlocks =
tooling::IncludeStyle::IBS_Preserve;
+ ChromiumStyle.InsertBraces = true;
victorvianna wrote:
Ack, abandoning then
h
https://github.com/victorvianna closed
https://github.com/llvm/llvm-project/pull/140888
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -5904,7 +5904,7 @@ TEST_F(FormatTest, MacrosWithoutTrailingSemicolon) {
getLLVMStyleWithColumns(60));
verifyFormat("VISIT_GL_CALL(GenBuffers, void, (GLsizei n, GLuint* buffers), "
- "(n, buffers))",
+ "(n, buffers))\n",
https://github.com/victorvianna updated
https://github.com/llvm/llvm-project/pull/140888
>From cf4f52fc09333a2de6339758bb68f464d2971bec Mon Sep 17 00:00:00 2001
From: Victor Hugo Vianna Silva
Date: Wed, 21 May 2025 14:48:13 +0100
Subject: [PATCH] ClangFormat: Insert braces & newline for Chromiu