Skip to content

Commit

Permalink
Apply clang-format 18
Browse files Browse the repository at this point in the history
Summary: Previously this code conformed from clang-format 12.

Reviewed By: igorsugak

Differential Revision: D56065247

fbshipit-source-id: f5a985dd8f8b84f2f9e1818b3719b43c5a1b05b3
  • Loading branch information
zertosh authored and facebook-github-bot committed Apr 14, 2024
1 parent fdc89fa commit 13ed673
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion fbpcf/engine/tuple_generator/ITupleGenerator.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ class TuplesMetricRecorder final : public fbpcf::util::IMetricRecorder {
"boolean_tuples_unused",
tuplesGenerated_.load() - tuplesConsumed_.load())(
"composite_tuples_requested",
compositeTuplesWithoutExpansionRequested_.load() + compositeTuplesRequiringExpansionRequested_.load())(
compositeTuplesWithoutExpansionRequested_.load() +
compositeTuplesRequiringExpansionRequested_.load())(
"composite_tuples_without_expansion_requested",
compositeTuplesWithoutExpansionRequested_.load())(
"composite_tuples_requiring_expansion_requested",
Expand Down
5 changes: 2 additions & 3 deletions fbpcf/io/cloud_util/S3FileUploader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ void S3FileUploader::init() {
}
}
int S3FileUploader::upload(std::vector<char>& buf) {
XLOG(INFO) << "Start uploading part:"
<< "Part number: " << partNumber_ << "\nBucket: " << bucket_
<< "\nKey: " << key_;
XLOG(INFO) << "Start uploading part:" << "Part number: " << partNumber_
<< "\nBucket: " << bucket_ << "\nKey: " << key_;
Aws::S3::Model::UploadPartRequest request;
request.SetBucket(bucket_);
request.SetKey(key_);
Expand Down
2 changes: 1 addition & 1 deletion fbpcf/mpc_std_lib/util/pairUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ class MpcAdapters<std::pair<T, U>, schedulerId> {

} // namespace fbpcf::mpc_std_lib::util

//#include "fbpcf/mpc_std_lib/util/pair_impl.h"
// #include "fbpcf/mpc_std_lib/util/pair_impl.h"

0 comments on commit 13ed673

Please sign in to comment.