Merge pull request #2 from MarcelRaad/develop

compile fix for tests with TEST_STD defined
This commit is contained in:
jzmaddock
2014-07-09 18:57:43 +01:00
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() {}