|
From: Dale H. <da...@us...> - 2002-06-13 23:42:14
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex2 In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex2 Modified Files: examp2.cpp Log Message: Has added in: #ifdef REQUIRE_STD_NAMESPACE using namespace std; #endif to allow for compilation under compilers that require a namespace declaration. Index: examp2.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex2/examp2.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** examp2.cpp 31 Aug 2000 22:49:01 -0000 1.5 --- examp2.cpp 13 Jun 2002 23:42:09 -0000 1.6 *************** *** 37,40 **** --- 37,44 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + // // A map is like a set in regards to the keys, it |