This revision was automatically updated to reflect the committed changes. Closed by commit rG72e4f4a2a117: [clang-format] [PR47936] AfterControlStatement: MultiLine breaks… (authored by MyDeveloperDay).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D114521/new/ https://reviews.llvm.org/D114521 Files: clang/lib/Format/UnwrappedLineFormatter.cpp clang/unittests/Format/FormatTest.cpp Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -2860,6 +2860,19 @@ " baz();\n" "}", format("try{foo();}catch(...){baz();}", Style)); + + Style.BraceWrapping.AfterFunction = true; + Style.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_MultiLine; + Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All; + Style.ColumnLimit = 80; + verifyFormat("void shortfunction() { bar(); }", Style); + + Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None; + verifyFormat("void shortfunction()\n" + "{\n" + " bar();\n" + "}", + Style); } TEST_F(FormatTest, BeforeWhile) { Index: clang/lib/Format/UnwrappedLineFormatter.cpp =================================================================== --- clang/lib/Format/UnwrappedLineFormatter.cpp +++ clang/lib/Format/UnwrappedLineFormatter.cpp @@ -676,7 +676,7 @@ // { <-- current Line // baz(); // } - if (Line.First == Line.Last && + if (Line.First == Line.Last && Line.First->isNot(TT_FunctionLBrace) && Style.BraceWrapping.AfterControlStatement == FormatStyle::BWACS_MultiLine) return 0;
Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -2860,6 +2860,19 @@ " baz();\n" "}", format("try{foo();}catch(...){baz();}", Style)); + + Style.BraceWrapping.AfterFunction = true; + Style.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_MultiLine; + Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All; + Style.ColumnLimit = 80; + verifyFormat("void shortfunction() { bar(); }", Style); + + Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None; + verifyFormat("void shortfunction()\n" + "{\n" + " bar();\n" + "}", + Style); } TEST_F(FormatTest, BeforeWhile) { Index: clang/lib/Format/UnwrappedLineFormatter.cpp =================================================================== --- clang/lib/Format/UnwrappedLineFormatter.cpp +++ clang/lib/Format/UnwrappedLineFormatter.cpp @@ -676,7 +676,7 @@ // { <-- current Line // baz(); // } - if (Line.First == Line.Last && + if (Line.First == Line.Last && Line.First->isNot(TT_FunctionLBrace) && Style.BraceWrapping.AfterControlStatement == FormatStyle::BWACS_MultiLine) return 0;
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits