forked from boostorg/type_traits
Merge pull request #2 from MarcelRaad/develop
compile fix for tests with TEST_STD defined
This commit is contained in:
@ -30,7 +30,7 @@ template<typename T>
|
||||
struct test_bug_4530
|
||||
{
|
||||
template<typename A>
|
||||
test_bug_4530(A&&, typename boost::enable_if<boost::is_convertible<A&&, T> >::type* =0);
|
||||
test_bug_4530(A&&, typename boost::enable_if<::tt::is_convertible<A&&, T> >::type* =0);
|
||||
};
|
||||
|
||||
struct A4530
|
||||
|
@ -33,7 +33,7 @@ BOOST_DECL_TRANSFORM_TEST(remove_const_test_19, ::tt::remove_const, (*const), (*
|
||||
struct S
|
||||
{
|
||||
template<typename T>
|
||||
typename boost::remove_const<T>::type *operator=(T const &) const { return 0; }
|
||||
typename ::tt::remove_const<T>::type *operator=(T const &) const { return 0; }
|
||||
};
|
||||
|
||||
void bar() {}
|
||||
|
Reference in New Issue
Block a user