88// http://www.boost.org/LICENSE_1_0.txt)
99
1010#include < memory>
11+ #include < type_traits>
1112
1213#include < rtree/test_rtree.hpp>
1314
@@ -27,16 +28,16 @@ void check_convertible_to_value(Rtree const& rt, Convertible const& conv)
2728{
2829 static const bool
2930 is_conv_to_indexable
30- = boost ::is_convertible<Convertible, typename Rtree::indexable_type>::value;
31+ = std ::is_convertible<Convertible, typename Rtree::indexable_type>::value;
3132 static const bool
3233 is_conv_to_value
33- = boost ::is_convertible<Convertible, typename Rtree::value_type>::value;
34+ = std ::is_convertible<Convertible, typename Rtree::value_type>::value;
3435 static const bool
3536 is_same_as_indexable
36- = boost ::is_same<Convertible, typename Rtree::indexable_type>::value;
37+ = std ::is_same<Convertible, typename Rtree::indexable_type>::value;
3738 static const bool
3839 is_same_as_value
39- = boost ::is_same<Convertible, typename Rtree::value_type>::value;
40+ = std ::is_same<Convertible, typename Rtree::value_type>::value;
4041
4142 BOOST_CHECK_EQUAL (is_same_as_indexable, false );
4243 BOOST_CHECK_EQUAL (is_same_as_value, false );
@@ -52,7 +53,7 @@ void test_pair()
5253{
5354 typedef std::pair<Box, std::size_t > Value;
5455
55- typename boost ::remove_const<Box>::type box;
56+ typename std ::remove_const<Box>::type box;
5657 bg::assign_zero (box);
5758
5859 Value val (box, 0 );
@@ -93,7 +94,7 @@ void test_pair_geom_ptr()
9394
9495 typedef std::pair<Box, polygon_t *> Value;
9596
96- typename boost ::remove_const<Box>::type box;
97+ typename std ::remove_const<Box>::type box;
9798 bg::assign_zero (box);
9899
99100 polygon_t poly;
0 commit comments