mirror of https://github.com/CGAL/cgal
remove warning
This commit is contained in:
parent
b95c2bb840
commit
526e9e3d9b
|
|
@ -110,7 +110,7 @@ OutputIterator copy_n_unique(InputIterator first, Size n,
|
||||||
typedef typename Traits::Less_xy_2 Less_xy_2;
|
typedef typename Traits::Less_xy_2 Less_xy_2;
|
||||||
|
|
||||||
std::set<Point_2, Less_xy_2> sorted_point_set;
|
std::set<Point_2, Less_xy_2> sorted_point_set;
|
||||||
for (std::size_t i = 0; i < n; i++)
|
for (Size i = 0; i < n; i++)
|
||||||
{
|
{
|
||||||
if (sorted_point_set.insert(*first).second)
|
if (sorted_point_set.insert(*first).second)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue