|
From: Dale H. <da...@us...> - 2002-06-13 23:42:12
|
Update of /cvsroot/corelinux/corelinux/src/testdrivers/ex14 In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/testdrivers/ex14 Modified Files: examp14.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: examp14.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/testdrivers/ex14/examp14.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** examp14.cpp 7 Sep 2000 12:56:24 -0000 1.4 --- examp14.cpp 13 Jun 2002 23:42:08 -0000 1.5 *************** *** 54,57 **** --- 54,61 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + // // In module function prototypes |