From ada1f1b831a8e25aa7371703a0bd181c9883468c Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Thu, 3 Jul 2014 21:05:17 +0200 Subject: [PATCH] compile fix for tests with TEST_STD defined --- test/is_convertible_test.cpp | 2 +- test/remove_const_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/is_convertible_test.cpp b/test/is_convertible_test.cpp index 3872e99..6f085ff 100644 --- a/test/is_convertible_test.cpp +++ b/test/is_convertible_test.cpp @@ -30,7 +30,7 @@ template struct test_bug_4530 { template - test_bug_4530(A&&, typename boost::enable_if >::type* =0); + test_bug_4530(A&&, typename boost::enable_if<::tt::is_convertible >::type* =0); }; struct A4530 diff --git a/test/remove_const_test.cpp b/test/remove_const_test.cpp index f386858..0271130 100644 --- a/test/remove_const_test.cpp +++ b/test/remove_const_test.cpp @@ -33,7 +33,7 @@ BOOST_DECL_TRANSFORM_TEST(remove_const_test_19, ::tt::remove_const, (*const), (* struct S { template - typename boost::remove_const::type *operator=(T const &) const { return 0; } + typename ::tt::remove_const::type *operator=(T const &) const { return 0; } }; void bar() {}