Removed a forgotten comment :-)
This commit is contained in:
parent
f876356d37
commit
c34e94b0d0
1 changed files with 1 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
eoDetSelect.h
|
eoDetSelect.h
|
||||||
(c) Merc Schoenauer, Maarten Keijzer, GeNeura Team, 2000
|
(c) Marc Schoenauer, Maarten Keijzer, GeNeura Team, 2000
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -65,7 +65,6 @@ class eoDetSelect : public eoSelect<EOT>
|
||||||
{
|
{
|
||||||
for (unsigned i=0; i<entireCopy; i++)
|
for (unsigned i=0; i<entireCopy; i++)
|
||||||
{
|
{
|
||||||
cout << "On copie tout le monde\n";
|
|
||||||
copy(_source.begin(), _source.end(), it);
|
copy(_source.begin(), _source.end(), it);
|
||||||
it += pSize;
|
it += pSize;
|
||||||
}
|
}
|
||||||
|
|
@ -73,7 +72,6 @@ class eoDetSelect : public eoSelect<EOT>
|
||||||
// the last ones
|
// the last ones
|
||||||
if (remain)
|
if (remain)
|
||||||
{
|
{
|
||||||
cout << "On copie les " << remain << " derniers\n";
|
|
||||||
copy(_source.begin(), _source.begin()+remain, it);
|
copy(_source.begin(), _source.begin()+remain, it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue