decorated copy with std:: specifier
This commit is contained in:
parent
e5c83ac2e8
commit
0441872bea
1 changed files with 2 additions and 2 deletions
|
|
@ -65,14 +65,14 @@ class eoDetSelect : public eoSelect<EOT>
|
||||||
{
|
{
|
||||||
for (unsigned i=0; i<entireCopy; i++)
|
for (unsigned i=0; i<entireCopy; i++)
|
||||||
{
|
{
|
||||||
copy(_source.begin(), _source.end(), it);
|
std::copy(_source.begin(), _source.end(), it);
|
||||||
it += pSize;
|
it += pSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// the last ones
|
// the last ones
|
||||||
if (remain)
|
if (remain)
|
||||||
{
|
{
|
||||||
copy(_source.begin(), _source.begin()+remain, it);
|
std::copy(_source.begin(), _source.begin()+remain, it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue