summaryrefslogtreecommitdiff
path: root/boost/geometry/algorithms/assign.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/algorithms/assign.hpp')
-rw-r--r--boost/geometry/algorithms/assign.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/boost/geometry/algorithms/assign.hpp b/boost/geometry/algorithms/assign.hpp
index e3d664de38..589a5c545b 100644
--- a/boost/geometry/algorithms/assign.hpp
+++ b/boost/geometry/algorithms/assign.hpp
@@ -69,7 +69,7 @@ namespace boost { namespace geometry
template <typename Geometry, typename Range>
inline void assign_points(Geometry& geometry, Range const& range)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
clear(geometry);
geometry::append(geometry, range, -1, 0);
@@ -96,7 +96,7 @@ collect the minimum bounding box of a geometry.
template <typename Geometry>
inline void assign_inverse(Geometry& geometry)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
dispatch::assign_inverse
<
@@ -116,7 +116,7 @@ inline void assign_inverse(Geometry& geometry)
template <typename Geometry>
inline void assign_zero(Geometry& geometry)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
dispatch::assign_zero
<
@@ -146,7 +146,7 @@ inline void assign_zero(Geometry& geometry)
template <typename Geometry, typename Type>
inline void assign_values(Geometry& geometry, Type const& c1, Type const& c2)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
dispatch::assign
<
@@ -179,7 +179,7 @@ template <typename Geometry, typename Type>
inline void assign_values(Geometry& geometry,
Type const& c1, Type const& c2, Type const& c3)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
dispatch::assign
<
@@ -206,7 +206,7 @@ template <typename Geometry, typename Type>
inline void assign_values(Geometry& geometry,
Type const& c1, Type const& c2, Type const& c3, Type const& c4)
{
- concept::check<Geometry>();
+ concepts::check<Geometry>();
dispatch::assign
<
@@ -227,9 +227,9 @@ struct assign
static inline void
apply(Geometry1& geometry1, const Geometry2& geometry2)
{
- concept::check<Geometry1>();
- concept::check<Geometry2 const>();
- concept::check_concepts_and_equal_dimensions<Geometry1, Geometry2 const>();
+ concepts::check<Geometry1>();
+ concepts::check<Geometry2 const>();
+ concepts::check_concepts_and_equal_dimensions<Geometry1, Geometry2 const>();
static bool const same_point_order
= point_order<Geometry1>::value == point_order<Geometry2>::value;