[Mockpp-commits] mockpp/mockpp/util AssertMo.h,1.27,1.28
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-04-05 17:04:55
|
Update of /cvsroot/mockpp/mockpp/mockpp/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19970/mockpp/util Modified Files: AssertMo.h Log Message: more namespace disabling Index: AssertMo.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AssertMo.h,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- AssertMo.h 15 Mar 2006 21:34:09 -0000 1.27 +++ AssertMo.h 5 Apr 2006 17:03:41 -0000 1.28 @@ -260,7 +260,7 @@ { \ MOCKPP_ASSERT_TRUE(exception_object == except_data); \ } \ - catch(std::exception &ex) \ + catch(MOCKPP_STD_NS::exception &ex) \ { \ MOCKPP_ASSERT_TRUE_MESSAGE(MOCKPP_GET_STRING(ex.what()), false); \ } \ @@ -294,7 +294,7 @@ { \ MOCKPP_ASSERT_TRUE(condition); \ } \ - catch(std::exception &ex) \ + catch(MOCKPP_STD_NS::exception &ex) \ { \ MOCKPP_ASSERT_TRUE_MESSAGE(MOCKPP_GET_STRING(ex.what()), false); \ } \ |