// Copyright 2017 Peter Dimov. // // 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 #include #include #include #include #include #include using boost::mp11::mp_bool; struct Q_sizeof_less { template using fn = mp_bool<(sizeof(T) < sizeof(U))>; }; int main() { using boost::mp11::mp_list; using boost::mp11::mp_max_element_q; { using L1 = mp_list; BOOST_TEST_TRAIT_TRUE((std::is_same, void>)); using L2 = mp_list; BOOST_TEST_TRAIT_TRUE((std::is_same, char[4]>)); using L3 = mp_list; BOOST_TEST_TRAIT_TRUE((std::is_same, char[4]>)); } { using L1 = std::tuple; BOOST_TEST_TRAIT_TRUE((std::is_same, void>)); using L2 = std::tuple; BOOST_TEST_TRAIT_TRUE((std::is_same, char[4]>)); using L3 = std::tuple; BOOST_TEST_TRAIT_TRUE((std::is_same, char[4]>)); } return boost::report_errors(); }