[clang] [llvm] clang-format reflow comments disable star: Fixes #58710 (PR #167146)

Björn Schäpers via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 9 14:28:06 PST 2025


================
@@ -506,6 +506,8 @@ BreakableBlockComment::BreakableBlockComment(
   }
 
   Decoration = "* ";
+  if (Style.ReflowCommentsNoStar)
+    Decoration = "";
----------------
HazardyKnusperkeks wrote:

```suggestion
Decoration = Style.ReflowCommentsNoStar ? "" : "* ";
```

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


More information about the llvm-commits mailing list