#pragma once #if BOOST_VERSION >= 107000 #include #else #include #endif namespace xrpl { // Before boost 1.70, get_lowest_layer required an explicit template parameter template 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