Added a few "std::" before copy and ostream_iterator
This commit is contained in:
parent
65395e7d28
commit
9341d7c229
2 changed files with 4 additions and 4 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Reference in a new issue