|
From: Dale H. <da...@us...> - 2002-06-13 23:42:14
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex5 In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex5 Modified Files: examp5.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: examp5.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex5/examp5.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** examp5.cpp 31 Aug 2000 22:49:01 -0000 1.2 --- examp5.cpp 13 Jun 2002 23:42:09 -0000 1.3 *************** *** 35,38 **** --- 35,42 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + using namespace corelinux; |