diff --git a/doc/doxy/doxygen_input/sourcecode/doxygen_5.cpp b/doc/doxy/doxygen_input/sourcecode/doxygen_5.cpp index 942df9285..02a888b33 100644 --- a/doc/doxy/doxygen_input/sourcecode/doxygen_5.cpp +++ b/doc/doxy/doxygen_input/sourcecode/doxygen_5.cpp @@ -47,7 +47,7 @@ namespace example_legacy_point1 // The first way to check a concept at compile time: checking if the input is parameter // or return type is OK. template - BOOST_CONCEPT_REQUIRES(((boost::geometry::concept::Point

)), (void)) + BOOST_CONCEPT_REQUIRES(((boost::geometry::concepts::Point

)), (void)) test1(P& p) { } @@ -57,7 +57,7 @@ namespace example_legacy_point1 template void test2(P& p) { - BOOST_CONCEPT_ASSERT((boost::geometry::concept::Point

)); + BOOST_CONCEPT_ASSERT((boost::geometry::concepts::Point

)); } @@ -90,7 +90,7 @@ namespace example_legacy_point2 // test it using boost concept requires template - BOOST_CONCEPT_REQUIRES(((boost::geometry::concept::ConstPoint

)), (double)) + BOOST_CONCEPT_REQUIRES(((boost::geometry::concepts::ConstPoint

)), (double)) test3(P& p) { return boost::geometry::get<0>(p); @@ -123,7 +123,7 @@ namespace example_custom_linestring1 void example() { typedef custom_linestring1 L; - BOOST_CONCEPT_ASSERT((boost::geometry::concept::Linestring)); + BOOST_CONCEPT_ASSERT((boost::geometry::concepts::Linestring)); } } diff --git a/doc/quickbook/quickref.xml b/doc/quickbook/quickref.xml index 8179d7a87..3188d3287 100644 --- a/doc/quickbook/quickref.xml +++ b/doc/quickbook/quickref.xml @@ -32,28 +32,28 @@ 0-dimensional - boost::geometry::concept::Point - boost::geometry::concept::ConstPoint + boost::geometry::concepts::Point + boost::geometry::concepts::ConstPoint 1-dimensional - boost::geometry::concept::Segment - boost::geometry::concept::ConstSegment - boost::geometry::concept::Linestring - boost::geometry::concept::ConstLinestring + boost::geometry::concepts::Segment + boost::geometry::concepts::ConstSegment + boost::geometry::concepts::Linestring + boost::geometry::concepts::ConstLinestring 2-dimensional - boost::geometry::concept::Box - boost::geometry::concept::ConstBox - boost::geometry::concept::Ring - boost::geometry::concept::ConstRing - boost::geometry::concept::Polygon - boost::geometry::concept::ConstPolygon + boost::geometry::concepts::Box + boost::geometry::concepts::ConstBox + boost::geometry::concepts::Ring + boost::geometry::concepts::ConstRing + boost::geometry::concepts::Polygon + boost::geometry::concepts::ConstPolygon @@ -61,8 +61,8 @@ Functions - boost::geometry::concept::check - boost::geometry::concept::check_concepts_and_equal_dimensions + boost::geometry::concepts::check + boost::geometry::concepts::check_concepts_and_equal_dimensions @@ -496,18 +496,18 @@ - boost::geometry::concept::AreaStrategy - boost::geometry::concept::CentroidStrategy - boost::geometry::concept::ConvexHullStrategy - boost::geometry::concept::PointDistanceStrategy - boost::geometry::concept::PointSegmentDistanceStrategy + boost::geometry::concepts::AreaStrategy + boost::geometry::concepts::CentroidStrategy + boost::geometry::concepts::ConvexHullStrategy + boost::geometry::concepts::PointDistanceStrategy + boost::geometry::concepts::PointSegmentDistanceStrategy - boost::geometry::concept::SegmentIntersectStrategy - boost::geometry::concept::SimplifyStrategy - boost::geometry::concept::WithinStrategy + boost::geometry::concepts::SegmentIntersectStrategy + boost::geometry::concepts::SimplifyStrategy + boost::geometry::concepts::WithinStrategy diff --git a/doc/release_notes.qbk b/doc/release_notes.qbk index 2981028d8..6a0e8e406 100644 --- a/doc/release_notes.qbk +++ b/doc/release_notes.qbk @@ -25,6 +25,7 @@ [*Improvements] * SVG: support boost::variant of geometries +* Rename namespace concept to concepts to avoid conflicts with the newest compilers [*Solved tickets]