remove warning

This commit is contained in:
Sébastien Loriot 2011-02-23 09:17:57 +00:00
parent b95c2bb840
commit 526e9e3d9b
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ OutputIterator copy_n_unique(InputIterator first, Size n,
typedef typename Traits::Less_xy_2 Less_xy_2;
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)
{