[geometry][index]: warnings related to BOOST_CHECK_EQUAL fixed in exceptions tests.

[SVN r84736]
This commit is contained in:
Adam Wulkiewicz 2013-06-10 22:28:17 +00:00
parent ac4b789c88
commit cacdd11037

View File

@ -139,8 +139,8 @@ void test_rtree_elements_exceptions(Parameters const& parameters = Parameters())
BOOST_CHECK_THROW( Tree tree(input.begin(), input.end(), parameters), throwing_varray_exception );
BOOST_CHECK_EQUAL(throwing_nodes_stats::internal_nodes_count(), 0);
BOOST_CHECK_EQUAL(throwing_nodes_stats::leafs_count(), 0);
BOOST_CHECK_EQUAL(throwing_nodes_stats::internal_nodes_count(), 0u);
BOOST_CHECK_EQUAL(throwing_nodes_stats::leafs_count(), 0u);
}
for ( size_t i = 0 ; i < 50 ; i += 2 )