mutation_writer: do not include unused headers

these unused includes were identified by clangd. see
https://clangd.llvm.org/guides/include-cleaner#unused-include-warning
for more details on the "Unused include" warning.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16958
This commit is contained in:
Kefu Chai
2024-01-24 10:09:32 +08:00
committed by Avi Kivity
parent c978d1b3f8
commit add74ec8ee
8 changed files with 11 additions and 11 deletions

View File

@@ -7,6 +7,7 @@
*/
#include "mutation_writer/partition_based_splitting_writer.hh"
#include "mutation_writer/feed_writers.hh"
#include "mutation/mutation_rebuilder.hh"
#include "replica/memtable.hh"

View File

@@ -9,8 +9,7 @@
#pragma once
#include <seastar/util/noncopyable_function.hh>
#include "feed_writers.hh"
#include "readers/flat_mutation_reader_v2.hh"
namespace mutation_writer {

View File

@@ -8,11 +8,11 @@
#include "mutation_writer/shard_based_splitting_writer.hh"
#include <cinttypes>
#include <boost/range/adaptor/transformed.hpp>
#include <boost/range/algorithm/min_element.hpp>
#include <seastar/core/shared_mutex.hh>
#include "dht/i_partitioner.hh"
#include "mutation_writer/feed_writers.hh"
namespace mutation_writer {

View File

@@ -9,8 +9,7 @@
#pragma once
#include <seastar/util/noncopyable_function.hh>
#include "feed_writers.hh"
#include "readers/flat_mutation_reader_v2.hh"
namespace mutation_writer {

View File

@@ -8,11 +8,12 @@
#include "mutation_writer/timestamp_based_splitting_writer.hh"
#include <cinttypes>
#include <boost/range/adaptor/transformed.hpp>
#include <boost/range/algorithm/min_element.hpp>
#include <seastar/core/shared_mutex.hh>
#include "mutation_writer/feed_writers.hh"
namespace mutation_writer {
namespace {

View File

@@ -10,7 +10,7 @@
#include <seastar/util/noncopyable_function.hh>
#include "feed_writers.hh"
#include "readers/flat_mutation_reader_v2.hh"
namespace mutation_writer {

View File

@@ -8,10 +8,10 @@
#include "mutation_writer/token_group_based_splitting_writer.hh"
#include <cinttypes>
#include <seastar/core/shared_mutex.hh>
#include <seastar/core/on_internal_error.hh>
#include "dht/i_partitioner.hh"
#include "mutation_writer/feed_writers.hh"
namespace mutation_writer {

View File

@@ -9,8 +9,8 @@
#pragma once
#include <functional>
#include "feed_writers.hh"
#include "readers/flat_mutation_reader_v2.hh"
#include "dht/token.hh"
namespace mutation_writer {