|
From: Dale H. <da...@us...> - 2002-06-13 23:42:14
|
Update of /cvsroot/corelinux/corelinux/src/utils/csamon In directory usw-pr-cvs1:/tmp/cvs-serv21984/src/utils/csamon Modified Files: csamon.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: csamon.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/utils/csamon/csamon.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** csamon.cpp 10 Jun 2000 19:51:06 -0000 1.1 --- csamon.cpp 13 Jun 2002 23:42:09 -0000 1.2 *************** *** 38,41 **** --- 38,45 ---- #include <exception> + #ifdef REQUIRE_STD_NAMESPACE + using namespace std; + #endif + using namespace corelinux; |