diff options
author | rmarker <37921131+rmarker@users.noreply.github.com> | 2024-02-15 14:40:56 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 20:10:56 -0800 |
commit | d821650e13145a1acccd337c9853354ad6531507 (patch) | |
tree | d3a45fddc0406fc8602b9027579091b68cf095a0 /clang/unittests/Format/FormatTestCSharp.cpp | |
parent | de6fad51462bd0784beafef6fd171ad7725205b5 (diff) | |
download | llvm-d821650e13145a1acccd337c9853354ad6531507.zip llvm-d821650e13145a1acccd337c9853354ad6531507.tar.gz llvm-d821650e13145a1acccd337c9853354ad6531507.tar.bz2 |
[clang-format][NFC] Drop "Always" in "AlwaysBreakAfterReturnType". (#81591)
Complete the switch from "AlwaysBreakAfterReturnType" to
"BreakAfterReturnType".
Diffstat (limited to 'clang/unittests/Format/FormatTestCSharp.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTestCSharp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Format/FormatTestCSharp.cpp b/clang/unittests/Format/FormatTestCSharp.cpp index 6f5e1e4..de261c0 100644 --- a/clang/unittests/Format/FormatTestCSharp.cpp +++ b/clang/unittests/Format/FormatTestCSharp.cpp @@ -505,7 +505,7 @@ TEST_F(FormatTestCSharp, CSharpNullForgiving) { TEST_F(FormatTestCSharp, AttributesIndentation) { FormatStyle Style = getMicrosoftStyle(FormatStyle::LK_CSharp); - Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None; + Style.BreakAfterReturnType = FormatStyle::RTBS_None; verifyFormat("[STAThread]\n" "static void Main(string[] args)\n" |