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#16914
18 lines
442 B
C++
18 lines
442 B
C++
|
|
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#include "locator/rack_inferring_snitch.hh"
|
|
#include "utils/class_registrator.hh"
|
|
|
|
namespace locator {
|
|
using registry = class_registrator<i_endpoint_snitch, rack_inferring_snitch, const snitch_config&>;
|
|
static registry registrator1("org.apache.cassandra.locator.RackInferringSnitch");
|
|
static registry registrator2("RackInferringSnitch");
|
|
}
|