summaryrefslogtreecommitdiff
path: root/boost/geometry/geometries/segment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/geometries/segment.hpp')
-rw-r--r--boost/geometry/geometries/segment.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/geometry/geometries/segment.hpp b/boost/geometry/geometries/segment.hpp
index af406aa09f..aeb275b858 100644
--- a/boost/geometry/geometries/segment.hpp
+++ b/boost/geometry/geometries/segment.hpp
@@ -45,7 +45,7 @@ namespace model
template<typename Point>
class segment : public std::pair<Point, Point>
{
- BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<Point>) );
public :
@@ -89,8 +89,8 @@ class referring_segment
typename boost::mpl::if_
<
boost::is_const<ConstOrNonConstPoint>,
- concept::Point<ConstOrNonConstPoint>,
- concept::ConstPoint<ConstOrNonConstPoint>
+ concepts::Point<ConstOrNonConstPoint>,
+ concepts::ConstPoint<ConstOrNonConstPoint>
>
) );