From 4477de980b6a1d6243931124f1e650f95ea1e790 Mon Sep 17 00:00:00 2001 From: jeliazkov_i Date: Sun, 7 May 2006 15:45:15 +0000 Subject: ChangeLogTag: Sun May 7 14:56:20 UTC 2006 Iliyan Jeliazkov --- TAO/ChangeLog | 7 +++++++ TAO/tests/ORB_Local_Config/Bunch/Test.cpp | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/TAO/ChangeLog b/TAO/ChangeLog index fdf71f7a0ff..5642f711c2a 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Sun May 7 14:56:20 UTC 2006 Iliyan Jeliazkov + + * tests/ORB_Local_Config/Bunch/Test.cpp: + + Removed semicolons after if() - cleaning the residue from + replacing the ACE_ASSERTs. + Sun May 7 06:59:54 UTC 2006 Iliyan Jeliazkov * tao/ORB_Core.cpp: diff --git a/TAO/tests/ORB_Local_Config/Bunch/Test.cpp b/TAO/tests/ORB_Local_Config/Bunch/Test.cpp index 788124f34fc..fad76bd876c 100644 --- a/TAO/tests/ORB_Local_Config/Bunch/Test.cpp +++ b/TAO/tests/ORB_Local_Config/Bunch/Test.cpp @@ -129,7 +129,7 @@ testTSSGestalt (int , ACE_TCHAR *[]) ACE_Service_Gestalt *global_instance = ACE_Service_Config::instance (); // Sanity check - if (global_instance == &one); + if (global_instance == &one) ACE_ERROR_RETURN ((LM_DEBUG, ACE_TEXT("Invalid global gestalt\n")), -1); { @@ -147,7 +147,7 @@ testTSSGestalt (int , ACE_TCHAR *[]) // The guard is dead! Long live the global gestalt that was previously global! } - if (global_instance != ACE_Service_Config::instance ()); + if (global_instance != ACE_Service_Config::instance ()) ACE_ERROR_RETURN ((LM_DEBUG, ACE_TEXT("Expected the original global gestalt\n")), -1); if (global_instance == &one); -- cgit v1.2.1