// // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/beast // #ifndef BOOST_BEAST_DETAIL_TYPE_TRAITS_HPP #define BOOST_BEAST_DETAIL_TYPE_TRAITS_HPP #include #include #include namespace boost { namespace beast { namespace detail { template std::size_t constexpr max_sizeof() { return sizeof(U); } template std::size_t constexpr max_sizeof() { return max_sizeof() > max_sizeof() ? max_sizeof() : max_sizeof(); } template std::size_t constexpr max_alignof() { return alignof(U); } template std::size_t constexpr max_alignof() { return max_alignof() > max_alignof() ? max_alignof() : max_alignof(); } // (since C++17) template using make_void = boost::make_void; template using void_t = boost::void_t; // (since C++11) missing from g++4.8 template struct aligned_union { static std::size_t constexpr alignment_value = max_alignof(); using type = typename std::aligned_storage< (Len > max_sizeof()) ? Len : (max_sizeof()), alignment_value>::type; }; template using aligned_union_t = typename aligned_union::type; //------------------------------------------------------------------------------ // for span template struct is_contiguous_container: std::false_type {}; template struct is_contiguous_container() = std::declval().size(), std::declval() = std::declval().data()), typename std::enable_if< std::is_same< typename std::remove_cv::type, typename std::remove_cv< typename std::remove_pointer< decltype(std::declval().data()) >::type >::type >::value >::type>>: std::true_type {}; template T launder_cast(U* u) { #if defined(__cpp_lib_launder) && __cpp_lib_launder >= 201606 return std::launder(reinterpret_cast(u)); #elif defined(BOOST_GCC) && BOOST_GCC_VERSION > 80000 return __builtin_launder(reinterpret_cast(u)); #else return reinterpret_cast(u); #endif } } // detail } // beast } // boost #endif