Files
scylladb/service/raft/raft_timeout.hh
Kefu Chai b3e2561ed8 service: do not include unused headers
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>
2025-03-20 11:18:16 +08:00

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;
};
}