[clang] [clang-format] Fix a bug in BCIS_AfterColon and `ColumnLimit: 0` (PR #127964)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 19 23:31:13 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-format
Author: Owen Pan (owenca)
<details>
<summary>Changes</summary>
Fixes #<!-- -->127622
---
Full diff: https://github.com/llvm/llvm-project/pull/127964.diff
2 Files Affected:
- (modified) clang/lib/Format/ContinuationIndenter.cpp (+2-3)
- (modified) clang/unittests/Format/FormatTest.cpp (+31-22)
``````````diff
diff --git a/clang/lib/Format/ContinuationIndenter.cpp b/clang/lib/Format/ContinuationIndenter.cpp
index 3e51b4aab1082..d49128c2b40f8 100644
--- a/clang/lib/Format/ContinuationIndenter.cpp
+++ b/clang/lib/Format/ContinuationIndenter.cpp
@@ -473,9 +473,8 @@ bool ContinuationIndenter::mustBreak(const LineState &State) {
(State.Column + State.Line->Last->TotalLength - Previous.TotalLength >
getColumnLimit(State) ||
CurrentState.BreakBeforeParameter) &&
- (!Current.isTrailingComment() || Current.NewlinesBefore > 0) &&
- (Style.BreakConstructorInitializers != FormatStyle::BCIS_BeforeColon ||
- Style.ColumnLimit > 0 || Current.NewlinesBefore > 0)) {
+ ((!Current.isTrailingComment() && Style.ColumnLimit > 0) ||
+ Current.NewlinesBefore > 0)) {
return true;
}
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp
index d6d028436d39c..132264486100d 100644
--- a/clang/unittests/Format/FormatTest.cpp
+++ b/clang/unittests/Format/FormatTest.cpp
@@ -8292,31 +8292,40 @@ TEST_F(FormatTest, BreakConstructorInitializersAfterColon) {
Style);
Style.ColumnLimit = 0;
- verifyFormat("SomeClass::Constructor() :\n"
- " a(a) {}",
- Style);
- verifyFormat("SomeClass::Constructor() noexcept :\n"
- " a(a) {}",
- Style);
- verifyFormat("SomeClass::Constructor() :\n"
- " a(a), b(b), c(c) {}",
- Style);
- verifyFormat("SomeClass::Constructor() :\n"
- " a(a) {\n"
- " foo();\n"
- " bar();\n"
- "}",
+ verifyNoChange("SomeClass::Constructor() :\n"
+ " a(a) {}",
+ Style);
+ verifyNoChange("SomeClass::Constructor() noexcept :\n"
+ " a(a) {}",
+ Style);
+ verifyNoChange("SomeClass::Constructor() :\n"
+ " a(a), b(b), c(c) {}",
+ Style);
+ verifyNoChange("SomeClass::Constructor() :\n"
+ " a(a) {\n"
+ " foo();\n"
+ " bar();\n"
+ "}",
+ Style);
+ verifyFormat("struct Foo {\n"
+ " int x;\n"
+ " Foo() : x(0) {}\n"
+ "};",
+ "struct Foo {\n"
+ " int x;\n"
+ " Foo():x(0) {}\n"
+ "};",
Style);
Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
- verifyFormat("SomeClass::Constructor() :\n"
- " a(a), b(b), c(c) {\n"
- "}",
- Style);
- verifyFormat("SomeClass::Constructor() :\n"
- " a(a) {\n"
- "}",
- Style);
+ verifyNoChange("SomeClass::Constructor() :\n"
+ " a(a), b(b), c(c) {\n"
+ "}",
+ Style);
+ verifyNoChange("SomeClass::Constructor() :\n"
+ " a(a) {\n"
+ "}",
+ Style);
Style.ColumnLimit = 80;
Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;
``````````
</details>
https://github.com/llvm/llvm-project/pull/127964
More information about the cfe-commits
mailing list