mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-23 10:00:35 +00:00
these unused includes were identified by clang-include-cleaner. after auditing these source files, all of the reports have been confirmed. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
21 lines
435 B
C++
21 lines
435 B
C++
// Copyright (C) 2024-present ScyllaDB
|
|
// SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/lowres_clock.hh>
|
|
#include <seastar/util/std-compat.hh>
|
|
|
|
#include "seastarx.hh"
|
|
|
|
#include <optional>
|
|
|
|
namespace service {
|
|
|
|
struct raft_timeout {
|
|
seastar::compat::source_location loc = seastar::compat::source_location::current();
|
|
std::optional<lowres_clock::time_point> value;
|
|
};
|
|
|
|
}
|