Skip to content

Commit

Permalink
fix clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 committed Oct 27, 2024
1 parent 56f84c3 commit 24a4fce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/jogasaki/executor/exchange/group/flow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ takatori::util::sequence_view<std::shared_ptr<model::task>> flow::create_tasks()
}

flow::sinks_sources flow::setup_partitions(std::size_t partitions) {
VLOG(50) << "setup_partitions() partitions:" << partitions << " this:" << this;
std::unique_lock lk{mutex_};
sinks_.reserve(partitions);
for(std::size_t i=0; i < partitions; ++i) {
Expand Down
8 changes: 4 additions & 4 deletions src/jogasaki/executor/exchange/group/flow.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ class flow : public shuffle::flow {
using field_index_type = meta::record_meta::field_index_type;

~flow() override;
flow(flow const& other) = default;
flow& operator=(flow const& other) = default;
flow(flow&& other) noexcept = default;
flow& operator=(flow&& other) noexcept = default;
flow(flow const& other) = delete;
flow& operator=(flow const& other) = delete;
flow(flow&& other) noexcept = delete;
flow& operator=(flow&& other) noexcept = delete;

/**
* @brief create new instance with empty schema (for testing)
Expand Down

0 comments on commit 24a4fce

Please sign in to comment.