Merged Boost.Geometry from revision 71123 to 71336

[SVN r71339]
This commit is contained in:
Barend Gehrels
2011-04-16 23:24:35 +00:00
parent 5a25db7b35
commit ac0807a26f
104 changed files with 2045 additions and 2496 deletions

View File

@@ -62,7 +62,7 @@ void test_linestring_2d()
T coors[][2] = {{1,2}, {3,4}};
L line = bg::make<L>(coors);
L line = bg::detail::make::make_points<L>(coors);
BOOST_CHECK_EQUAL(line.size(), 2u);
}
@@ -74,7 +74,7 @@ void test_linestring_3d()
T coors[][3] = {{1,2,3}, {4,5,6}};
L line = bg::make<L>(coors);
L line = bg::detail::make::make_points<L>(coors);
BOOST_CHECK_EQUAL(line.size(), 2u);
//std::cout << dsv(line) << std::endl;