Removed "using namespace std" statements from header files in EO -- "std::" identifier were added where necessary.

This commit is contained in:
okoenig 2003-02-27 19:28:07 +00:00
commit 86fa476c67
263 changed files with 2009 additions and 1976 deletions

View file

@ -121,9 +121,9 @@ int main(int argc, char* argv[])
dea(distrib); // run the dea
cout << "Final Distribution\n";
distrib.printOn(cout);
cout << endl;
std::cout << "Final Distribution\n";
distrib.printOn(std::cout);
std::cout << std::endl;
#if !defined(NO_GNUPLOT)
// wait - for graphical output
@ -134,8 +134,8 @@ int main(int argc, char* argv[])
}
#endif
}
catch(exception& e)
catch(std::exception& e)
{
cout << e.what() << endl;
std::cout << e.what() << std::endl;
}
}