[clang] [clang-format][NFC] Drop "Always" in "AlwaysBreakAfterReturnType". (PR #81591)
Owen Pan via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 13 23:28:00 PST 2024
================
@@ -1871,10 +1869,10 @@ FormatStyle getWebKitStyle() {
FormatStyle getGNUStyle() {
FormatStyle Style = getLLVMStyle();
Style.AlwaysBreakAfterDefinitionReturnType = FormatStyle::DRTBS_All;
- Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All;
Style.BreakBeforeBraces = FormatStyle::BS_GNU;
Style.BreakBeforeTernaryOperators = true;
+ Style.BreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
----------------
owenca wrote:
Not sorted.
https://github.com/llvm/llvm-project/pull/81591
More information about the cfe-commits
mailing list