decorated copy with std:: specifier

This commit is contained in:
maartenkeijzer 2003-03-02 11:29:01 +00:00
commit 0441872bea

View file

@ -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);
} }
} }