|
From: Dale H. <da...@us...> - 2002-06-13 23:42:11
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex13 In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex13 Modified Files: examp13.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: examp13.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex13/examp13.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** examp13.cpp 7 Sep 2000 12:54:44 -0000 1.9 --- examp13.cpp 13 Jun 2002 23:42:08 -0000 1.10 *************** *** 57,60 **** --- 57,63 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif // |