/*! @file Defines a SFINAE-friendly version of `std::common_type`. @copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_DETAIL_STD_COMMON_TYPE_HPP #define BOOST_HANA_DETAIL_STD_COMMON_TYPE_HPP #include #include #include BOOST_HANA_NAMESPACE_BEGIN namespace detail { //! @ingroup group-details //! Equivalent to `std::common_type`, except it is SFINAE-friendly and //! does not support custom specializations. template struct std_common_type { }; template struct std_common_type() : std::declval() ))> { using type = typename detail::decay< decltype(true ? std::declval() : std::declval()) >::type; }; } BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_DETAIL_STD_COMMON_TYPE_HPP