Remove unused attribut and correct indendation
This commit is contained in:
@@ -445,10 +445,9 @@ public:
|
||||
|
||||
template <class PointIterator, class IndicesIterator>
|
||||
std::size_t insert_unique_constraints(PointIterator points_first,
|
||||
PointIterator points_beyond,
|
||||
IndicesIterator indices_first,
|
||||
IndicesIterator indices_beyond,
|
||||
bool check_duplicates = false)
|
||||
PointIterator points_beyond,
|
||||
IndicesIterator indices_first,
|
||||
IndicesIterator indices_beyond)
|
||||
{
|
||||
std::vector<Point> points(points_first, points_beyond);
|
||||
return internal::insert_constraints(*this, points, indices_first, indices_beyond, true);
|
||||
@@ -457,8 +456,7 @@ public:
|
||||
|
||||
template <class ConstraintIterator>
|
||||
std::size_t insert_unique_constraints(ConstraintIterator first,
|
||||
ConstraintIterator beyond,
|
||||
bool check_duplicates = false)
|
||||
ConstraintIterator beyond)
|
||||
{
|
||||
return internal::insert_constraints(*this, first, beyond, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user