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`.
24 lines
451 B
C++
24 lines
451 B
C++
#pragma once
|
|
|
|
#if BOOST_VERSION >= 107000
|
|
#include <boost/beast/core/stream_traits.hpp>
|
|
#else
|
|
#include <boost/beast/core/type_traits.hpp>
|
|
#endif
|
|
|
|
namespace xrpl {
|
|
|
|
// Before boost 1.70, get_lowest_layer required an explicit template parameter
|
|
template <class T>
|
|
decltype(auto)
|
|
get_lowest_layer(T& t) noexcept
|
|
{
|
|
#if BOOST_VERSION >= 107000
|
|
return boost::beast::get_lowest_layer(t);
|
|
#else
|
|
return t.lowest_layer();
|
|
#endif
|
|
}
|
|
|
|
} // namespace xrpl
|