diff --git a/test/lsp_convertible_test.cpp b/test/lsp_convertible_test.cpp index 67722df..c1e4b46 100644 --- a/test/lsp_convertible_test.cpp +++ b/test/lsp_convertible_test.cpp @@ -12,7 +12,7 @@ #include #include #include -#include +#include // @@ -26,7 +26,7 @@ class D: public B { }; -using boost::is_convertible; +using std::is_convertible; #define TEST_CV_TRUE_( S1, T, S2, U ) \ BOOST_TEST(( is_convertible< S1, S2 >::value == true )); \ diff --git a/test/lsp_convertible_test2.cpp b/test/lsp_convertible_test2.cpp index acafda4..6e4fca1 100644 --- a/test/lsp_convertible_test2.cpp +++ b/test/lsp_convertible_test2.cpp @@ -12,7 +12,7 @@ #include #include #include -#include +#include // @@ -26,7 +26,7 @@ class D: public B { }; -using boost::is_convertible; +using std::is_convertible; #define TEST_CV_TRUE_( S1, T, S2, U ) \ BOOST_TEST(( is_convertible< S1, S2 >::value == true )); \ diff --git a/test/sp_convertible_test2.cpp b/test/sp_convertible_test2.cpp index 5b8272f..d07fbcf 100644 --- a/test/sp_convertible_test2.cpp +++ b/test/sp_convertible_test2.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include // @@ -25,7 +25,7 @@ class D: public B { }; -using boost::is_convertible; +using std::is_convertible; #define TEST_CV_TRUE_( S1, T, S2, U ) \ BOOST_TEST(( is_convertible< S1, S2 >::value == true )); \