compile fix for tests with TEST_STD defined

This commit is contained in:
Marcel Raad
2014-07-03 21:05:17 +02:00
parent 8ced326b70
commit ada1f1b831
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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() {}