Skip to content

Commit 7eee3f4

Browse files
committed
Update clang-format to 16.0.0.
1 parent a08b1f9 commit 7eee3f4

File tree

6 files changed

+111
-98
lines changed

6 files changed

+111
-98
lines changed

.clang-format

+64-18
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,36 @@ Language: Cpp
44
AccessModifierOffset: -1
55
AlignAfterOpenBracket: Align
66
AlignArrayOfStructures: None
7-
AlignConsecutiveMacros: None
8-
AlignConsecutiveAssignments: None
9-
AlignConsecutiveBitFields: None
10-
AlignConsecutiveDeclarations: None
7+
AlignConsecutiveAssignments:
8+
Enabled: false
9+
AcrossEmptyLines: false
10+
AcrossComments: false
11+
AlignCompound: false
12+
PadOperators: true
13+
AlignConsecutiveBitFields:
14+
Enabled: false
15+
AcrossEmptyLines: false
16+
AcrossComments: false
17+
AlignCompound: false
18+
PadOperators: false
19+
AlignConsecutiveDeclarations:
20+
Enabled: false
21+
AcrossEmptyLines: false
22+
AcrossComments: false
23+
AlignCompound: false
24+
PadOperators: false
25+
AlignConsecutiveMacros:
26+
Enabled: false
27+
AcrossEmptyLines: false
28+
AcrossComments: false
29+
AlignCompound: false
30+
PadOperators: false
1131
AlignEscapedNewlines: Left
1232
AlignOperands: Align
13-
AlignTrailingComments: true
33+
AlignTrailingComments:
34+
Kind: Always
35+
OverEmptyLines: 0
1436
AllowAllArgumentsOnNextLine: true
15-
AllowAllConstructorInitializersOnNextLine: true
1637
AllowAllParametersOfDeclarationOnNextLine: true
1738
AllowShortBlocksOnASingleLine: Never
1839
AllowShortCaseLabelsOnASingleLine: false
@@ -25,6 +46,8 @@ AlwaysBreakAfterDefinitionReturnType: None
2546
AlwaysBreakAfterReturnType: None
2647
AlwaysBreakBeforeMultilineStrings: true
2748
AlwaysBreakTemplateDeclarations: Yes
49+
# AttributeMacros:
50+
# - __capability
2851
BinPackArguments: true
2952
BinPackParameters: true
3053
BitFieldColonSpacing: Both
@@ -33,12 +56,12 @@ BraceWrapping:
3356
AfterClass: false
3457
AfterControlStatement: Never
3558
AfterEnum: false
59+
AfterExternBlock: false
3660
AfterFunction: false
3761
AfterNamespace: false
3862
AfterObjCDeclaration: false
3963
AfterStruct: false
4064
AfterUnion: false
41-
AfterExternBlock: false
4265
BeforeCatch: false
4366
BeforeElse: false
4467
BeforeLambdaBody: false
@@ -47,24 +70,23 @@ BraceWrapping:
4770
SplitEmptyFunction: true
4871
SplitEmptyRecord: true
4972
SplitEmptyNamespace: true
73+
BreakAfterAttributes: Never
74+
# BreakAfterJavaFieldAnnotations: false
75+
BreakArrays: true
5076
BreakBeforeBinaryOperators: None
5177
BreakBeforeBraces: Attach
52-
BreakBeforeConceptDeclarations: true
53-
BreakBeforeInheritanceComma: true # false
54-
BreakInheritanceList: BeforeComma # BeforeColon
78+
BreakBeforeConceptDeclarations: Always
79+
BreakBeforeInlineASMColon: OnlyMultiline
5580
BreakBeforeTernaryOperators: true
56-
BreakConstructorInitializersBeforeComma: true # false
5781
BreakConstructorInitializers: BeforeComma # BeforeColon
58-
# BreakAfterJavaFieldAnnotations: false
82+
BreakInheritanceList: BeforeComma # BeforeColon
5983
BreakStringLiterals: true
6084
ColumnLimit: 120 # 80
6185
CommentPragmas: '^ IWYU pragma:'
6286
CompactNamespaces: false
63-
ConstructorInitializerAllOnOneLineOrOnePerLine: true
6487
ConstructorInitializerIndentWidth: 4
6588
ContinuationIndentWidth: 4
6689
Cpp11BracedListStyle: true
67-
DeriveLineEnding: true
6890
DerivePointerAlignment: true
6991
DisableFormat: false
7092
EmptyLineAfterAccessModifier: Never
@@ -83,14 +105,21 @@ IndentCaseLabels: true
83105
IndentExternBlock: AfterExternBlock
84106
IndentGotoLabels: true
85107
IndentPPDirectives: None
86-
IndentRequires: false
108+
IndentRequiresClause: true
87109
IndentWidth: 2
88110
IndentWrappedFunctionNames: false
111+
InsertBraces: false
112+
InsertNewlineAtEOF: false
89113
# InsertTrailingCommas: None
114+
IntegerLiteralSeparator:
115+
Binary: 0
116+
Decimal: 0
117+
Hex: 0
90118
# JavaScriptQuotes: Leave
91119
# JavaScriptWrapImports: true
92120
KeepEmptyLinesAtTheStartOfBlocks: false
93121
LambdaBodyIndentation: Signature
122+
LineEnding: DeriveLF
94123
MacroBlockBegin: ''
95124
MacroBlockEnd: ''
96125
MaxEmptyLinesToKeep: 1
@@ -100,23 +129,31 @@ NamespaceIndentation: None
100129
# ObjCBreakBeforeNestedBlockParam: true
101130
# ObjCSpaceAfterProperty: false
102131
# ObjCSpaceBeforeProtocolList: true
132+
PackConstructorInitializers: NextLine
103133
PenaltyBreakAssignment: 2
104134
PenaltyBreakBeforeFirstCallParameter: 1
105135
PenaltyBreakComment: 300
106136
PenaltyBreakFirstLessLess: 120
137+
PenaltyBreakOpenParenthesis: 0
107138
PenaltyBreakString: 1000
108139
PenaltyBreakTemplateDeclaration: 10
109140
PenaltyExcessCharacter: 1000000
110141
PenaltyIndentedWhitespace: 0
111142
PenaltyReturnTypeOnItsOwnLine: 200
112-
PointerAlignment: Right
143+
PointerAlignment: Right # Left
113144
PPIndentWidth: -1
145+
QualifierAlignment: Leave
114146
ReferenceAlignment: Pointer
115147
ReflowComments: false # true
148+
RemoveBracesLLVM: false
149+
RemoveSemicolon: false
150+
RequiresClausePosition: OwnLine
151+
RequiresExpressionIndentation: OuterScope
152+
SeparateDefinitionBlocks: Leave
116153
ShortNamespaceLines: 0 # 1
117154
SortIncludes: CaseInsensitive # CaseSensitive
118155
# SortJavaStaticImport: Before
119-
SortUsingDeclarations: false # true
156+
SortUsingDeclarations: Lexicographic # LexicographicNumeric
120157
SpaceAfterCStyleCast: false
121158
SpaceAfterLogicalNot: false
122159
SpaceAfterTemplateKeyword: true
@@ -127,6 +164,16 @@ SpaceBeforeCpp11BracedList: false
127164
SpaceBeforeCtorInitializerColon: true
128165
SpaceBeforeInheritanceColon: true
129166
SpaceBeforeParens: ControlStatements
167+
SpaceBeforeParensOptions:
168+
AfterControlStatements: true
169+
AfterForeachMacros: true
170+
AfterFunctionDefinitionName: false
171+
AfterFunctionDeclarationName: false
172+
AfterIfMacros: true
173+
AfterOverloadedOperator: false
174+
AfterRequiresInClause: false
175+
AfterRequiresInExpression: false
176+
BeforeNonEmptyParentheses: false
130177
SpaceBeforeRangeBasedForLoopColon: true
131178
SpaceBeforeSquareBrackets: false
132179
SpaceInEmptyBlock: false
@@ -143,6 +190,5 @@ SpacesInParentheses: false
143190
SpacesInSquareBrackets: false
144191
Standard: Auto
145192
TabWidth: 100 # 8
146-
UseCRLF: false
147193
UseTab: Never
148194
...

td/telegram/AutosaveManager.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,9 @@ void AutosaveManager::load_autosave_settings(Promise<td_api::object_ptr<td_api::
277277

278278
if (G()->parameters().use_message_db) {
279279
G()->td_db()->get_sqlite_pmc()->get(
280-
get_autosave_settings_database_key(),
281-
PromiseCreator::lambda(
282-
[actor_id = actor_id(this)](string value) mutable {
283-
send_closure(actor_id, &AutosaveManager::on_load_autosave_settings_from_database, std::move(value));
284-
}));
280+
get_autosave_settings_database_key(), PromiseCreator::lambda([actor_id = actor_id(this)](string value) mutable {
281+
send_closure(actor_id, &AutosaveManager::on_load_autosave_settings_from_database, std::move(value));
282+
}));
285283
return;
286284
}
287285

td/telegram/StickersManager.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1621,8 +1621,7 @@ void StickersManager::init() {
16211621
load_special_sticker_set_info_from_binlog(sticker_set);
16221622
}
16231623

1624-
dice_emojis_str_ =
1625-
td_->option_manager_->get_option_string("dice_emojis", "🎲\x01🎯\x01🏀\x01\x01⚽️\x01🎰\x01🎳");
1624+
dice_emojis_str_ = td_->option_manager_->get_option_string("dice_emojis", "🎲\x01🎯\x01🏀\x01\x01⚽️\x01🎰\x01🎳");
16261625
dice_emojis_ = full_split(dice_emojis_str_, '\x01');
16271626
for (auto &dice_emoji : dice_emojis_) {
16281627
auto &animated_dice_sticker_set = add_special_sticker_set(SpecialStickerSetType::animated_dice(dice_emoji));

tdutils/td/utils/as.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class As {
2424
As(const As &new_value) = delete;
2525
As &operator=(const As &) = delete;
2626
As(As &&) = default;
27-
As &operator=(As &&new_value) &&noexcept {
27+
As &operator=(As &&new_value) && noexcept {
2828
std::memcpy(ptr_, new_value.ptr_, sizeof(T));
2929
return *this;
3030
}

tdutils/td/utils/type_traits.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ constexpr size_t member_function_argument_count() {
3434

3535
// there is no std::is_trivially_copyable in libstdc++ before 5.0
3636
#if __GLIBCXX__
37-
#if TD_CLANG || (TD_GCC && __GNUC__ >= 5) // but clang >= 3.0 and g++ >= 5.0 supports __is_trivially_copyable
37+
#if TD_CLANG || (TD_GCC && __GNUC__ >= 5) // but clang >= 3.0 and g++ >= 5.0 supports __is_trivially_copyable
3838
#define TD_IS_TRIVIALLY_COPYABLE(T) __is_trivially_copyable(T)
3939
#else
4040
#define TD_IS_TRIVIALLY_COPYABLE(T) __has_trivial_copy(T)

0 commit comments

Comments
 (0)