Updated polygon.hpp, ring_type is now reference because it returns a reference to its rings

Updated many test files to avoid point_2d
Updated boost.polygon adaption

[SVN r67178]
This commit is contained in:
Barend Gehrels
2010-12-11 15:51:38 +00:00
parent fa5027dc66
commit 1f90af482d
38 changed files with 207 additions and 212 deletions

View File

@@ -17,7 +17,7 @@
#include <boost/geometry/core/coordinate_type.hpp>
#include <boost/geometry/extensions/gis/io/wkt/read_wkt.hpp>
#include <boost/geometry/geometries/cartesian2d.hpp>
#include <boost/geometry/geometries/geometries.hpp>
template <typename Geometry, typename CircularIterator>
@@ -101,7 +101,7 @@ void test_all()
int test_main(int, char* [])
{
test_all<bg::model::d2::point>();
test_all<bg::model::d2::point_xy<double> >();
return 0;
}