Skip to content

Commit 720a6ac

Browse files
committed
Update .clang-format.
1 parent 3413e38 commit 720a6ac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎.clang-format

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ PenaltyBreakString: 1000
9292
PenaltyBreakTemplateDeclaration: 10
9393
PenaltyExcessCharacter: 1000000
9494
PenaltyReturnTypeOnItsOwnLine: 200
95-
PointerAlignment: Left
95+
PointerAlignment: Right
9696
ReflowComments: false # true
9797
SortIncludes: false # disabled, because we need case insensitive sort
9898
SortUsingDeclarations: false # true

‎td/telegram/cli.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2845,7 +2845,8 @@ class CliClient final : public Actor {
28452845
fingerprints.push_back(td_api::make_object<td_api::groupCallPayloadFingerprint>("h2", "s2", "fingerprint2"));
28462846
send_request(td_api::make_object<td_api::joinGroupCall>(
28472847
as_group_call_id(args),
2848-
td_api::make_object<td_api::groupCallPayload>("ufrag", "pwd", std::move(fingerprints)), group_call_source_, true));
2848+
td_api::make_object<td_api::groupCallPayload>("ufrag", "pwd", std::move(fingerprints)), group_call_source_,
2849+
true));
28492850
} else if (op == "jgcc") {
28502851
send_request(td_api::make_object<td_api::joinGroupCall>(as_group_call_id(args), nullptr, 0, true));
28512852
} else if (op == "tgcmnp" || op == "tgcmnpe") {

0 commit comments

Comments
 (0)