================ @@ -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 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
