mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
14 lines
187 B
C++
14 lines
187 B
C++
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
namespace beast {
|
|
|
|
template <class T>
|
|
struct IsAgedContainer : std::false_type
|
|
{
|
|
explicit IsAgedContainer() = default;
|
|
};
|
|
|
|
} // namespace beast
|