summaryrefslogtreecommitdiff
path: root/boost/geometry/algorithms/detail/assign_indexed_point.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/algorithms/detail/assign_indexed_point.hpp')
-rw-r--r--boost/geometry/algorithms/detail/assign_indexed_point.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/geometry/algorithms/detail/assign_indexed_point.hpp b/boost/geometry/algorithms/detail/assign_indexed_point.hpp
index acfc37e250..e5d9358c13 100644
--- a/boost/geometry/algorithms/detail/assign_indexed_point.hpp
+++ b/boost/geometry/algorithms/detail/assign_indexed_point.hpp
@@ -46,8 +46,8 @@ namespace detail
template <std::size_t Index, typename Geometry, typename Point>
inline void assign_point_to_index(Point const& point, Geometry& geometry)
{
- concept::check<Point const>();
- concept::check<Geometry>();
+ concepts::check<Point const>();
+ concepts::check<Geometry>();
detail::assign::assign_point_to_index
<
@@ -74,8 +74,8 @@ inline void assign_point_to_index(Point const& point, Geometry& geometry)
template <std::size_t Index, typename Point, typename Geometry>
inline void assign_point_from_index(Geometry const& geometry, Point& point)
{
- concept::check<Geometry const>();
- concept::check<Point>();
+ concepts::check<Geometry const>();
+ concepts::check<Point>();
detail::assign::assign_point_from_index
<