Removed "using namespace std" statements from header files in EO -- "std::" identifier were added where necessary.
This commit is contained in:
parent
6441ea1ec3
commit
86fa476c67
263 changed files with 2009 additions and 1976 deletions
|
|
@ -33,7 +33,7 @@
|
|||
#include <utils/eoStat.h>
|
||||
|
||||
/** eoCheckPoint is a container class.
|
||||
It contains vectors of (pointers to)
|
||||
It contains std::vectors of (pointers to)
|
||||
eoContinue (modif. MS July 16. 2002)
|
||||
eoStats, eoUpdater and eoMonitor
|
||||
it is an eoContinue, so its operator() will be called every generation -
|
||||
|
|
@ -76,7 +76,7 @@ bool eoCheckPoint<EOT>::operator()(const eoPop<EOT>& _pop)
|
|||
{
|
||||
unsigned i;
|
||||
|
||||
vector<const EOT*> sorted_pop;
|
||||
std::vector<const EOT*> sorted_pop;
|
||||
if (!sorted.empty())
|
||||
{
|
||||
_pop.sort(sorted_pop);
|
||||
|
|
|
|||
Reference in a new issue