[clang] [clang-format] allow short function body on a single line (PR #151428)

Björn Schäpers via cfe-commits cfe-commits at lists.llvm.org
Thu Jul 31 01:51:40 PDT 2025


================
@@ -1921,6 +1921,10 @@ void UnwrappedLineParser::parseStructuralElement(
           }
         } else if (Style.BraceWrapping.AfterFunction) {
           addUnwrappedLine();
+        } else if (Style.AllowShortFunctionBodiesOnASingleLine) {
+          // Wrap the left brace here; we'll try to merge it back
----------------
HazardyKnusperkeks wrote:

Why is this needed? It seems wrong to me.

https://github.com/llvm/llvm-project/pull/151428


More information about the cfe-commits mailing list