Added a few "std::" before copy and ostream_iterator

This commit is contained in:
evomarc 2002-04-08 08:42:01 +00:00
commit 9341d7c229
2 changed files with 4 additions and 4 deletions

View file

@ -257,7 +257,7 @@ class eoPop: public vector<EOT>, public eoObject, public eoPersistent
virtual void printOn(ostream& _os) const
{
_os << size() << '\n';
copy( begin(), end(), ostream_iterator<EOT>( _os, "\n") );
std::copy( begin(), end(), std::ostream_iterator<EOT>( _os, "\n") );
}
/** @name Methods from eoObject */