mirror of
https://github.com/boostorg/mp11.git
synced 2025-12-05 08:09:20 +01:00
Move everything to namespace mp11
This commit is contained in:
@@ -15,14 +15,14 @@ struct X {};
|
||||
|
||||
int main()
|
||||
{
|
||||
using boost::mp_identity;
|
||||
using boost::mp11::mp_identity;
|
||||
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity<void const volatile>::type, void const volatile>));
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity<void()>::type, void()>));
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity<int const[]>::type, int const[]>));
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity<X>::type, X>));
|
||||
|
||||
using boost::mp_identity_t;
|
||||
using boost::mp11::mp_identity_t;
|
||||
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity_t<void const volatile>, void const volatile>));
|
||||
BOOST_TEST_TRAIT_TRUE((std::is_same<mp_identity_t<void()>, void()>));
|
||||
|
||||
Reference in New Issue
Block a user