|
From: Dale H. <da...@us...> - 2002-06-13 23:42:13
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex15 In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex15 Modified Files: examp15.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: examp15.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex15/examp15.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** examp15.cpp 31 Aug 2000 22:49:02 -0000 1.4 --- examp15.cpp 13 Jun 2002 23:42:08 -0000 1.5 *************** *** 44,47 **** --- 44,51 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + // // In module function prototypes |