mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 23:20:33 +00:00
15 lines
215 B
C++
15 lines
215 B
C++
#pragma once
|
|
|
|
#include <boost/beast/core/stream_traits.hpp>
|
|
|
|
namespace xrpl {
|
|
|
|
template <class T>
|
|
decltype(auto)
|
|
getLowestLayer(T& t) noexcept
|
|
{
|
|
return boost::beast::get_lowest_layer(t);
|
|
}
|
|
|
|
} // namespace xrpl
|