mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
19 lines
411 B
C++
19 lines
411 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/container/detail/aged_ordered_container.h>
|
|
|
|
#include <chrono>
|
|
#include <functional>
|
|
#include <memory>
|
|
|
|
namespace beast {
|
|
|
|
template <
|
|
class Key,
|
|
class Clock = std::chrono::steady_clock,
|
|
class Compare = std::less<Key>,
|
|
class Allocator = std::allocator<Key>>
|
|
using aged_set = detail::aged_ordered_container<false, false, Key, void, Clock, Compare, Allocator>;
|
|
|
|
}
|