Fixes for Intel C++

[SVN r16029]
This commit is contained in:
John Maddock
2002-10-31 12:13:56 +00:00
parent 09bfc7f853
commit 66ddab7fae

View File

@ -27,6 +27,7 @@ using std::ostream;
using std::endl; using std::endl;
using std::ifstream; using std::ifstream;
using std::streambuf; using std::streambuf;
using std::getline;
#endif #endif
#include <algorithm> #include <algorithm>
@ -38,8 +39,8 @@ using std::streambuf;
#include <boost/timer.hpp> #include <boost/timer.hpp>
#include <boost/smart_ptr.hpp> #include <boost/smart_ptr.hpp>
#ifdef BOOST_MSVC #if defined(_MSC_VER) && (_MSC_VER <= 1300)
// no Koenig lookup, use using declaration instead: // maybe no Koenig lookup, use using declaration instead:
using namespace boost; using namespace boost;
#endif #endif
@ -360,3 +361,4 @@ int main(int argc, char**argv)