diff options
author | Abdullah Sowayan <sowayan@users.noreply.github.com> | 2007-07-11 04:35:58 +0000 |
---|---|---|
committer | Abdullah Sowayan <sowayan@users.noreply.github.com> | 2007-07-11 04:35:58 +0000 |
commit | e10da70f1fece623fd3907aee6576e6644f0e323 (patch) | |
tree | 3c7291d7f03841682a1ac18e2527b01c18183c52 /CIAO | |
parent | 35687687544843de5a10eef7db25bcd03bf80cf3 (diff) | |
download | ATCD-e10da70f1fece623fd3907aee6576e6644f0e323.tar.gz |
Wed Jul 11 04:33:45 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'CIAO')
-rw-r--r-- | CIAO/ChangeLog | 6 | ||||
-rw-r--r-- | CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog index 325b7a5801d..212d4a9c8fd 100644 --- a/CIAO/ChangeLog +++ b/CIAO/ChangeLog @@ -1,3 +1,9 @@ +Wed Jul 11 04:33:45 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com> + + * DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp: + + Fix fuzz warning regarding exception specification. + Tue Jul 10 13:21:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl> * ciao/Session_Container.cpp: diff --git a/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp b/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp index 05135b13377..e0b4ab85023 100644 --- a/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp +++ b/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Benchmark_Impl.cpp @@ -199,7 +199,7 @@ namespace CIAO ex.propertyName.in (), ex.elementName.in (), ex.resourceName.in ())); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } catch (Deployment::StartError& ex) { @@ -207,7 +207,7 @@ namespace CIAO "EXCEPTION: StartError exception caught: %s, %s\n", ex.name.in (), ex.reason.in ())); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } catch (Deployment::InvalidProperty& ex) { @@ -215,7 +215,7 @@ namespace CIAO "EXCEPTION: InvalidProperty exception caught: %s, %s\n", ex.name.in (), ex.reason.in ())); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } catch (Deployment::InvalidConnection& ex) { @@ -223,20 +223,20 @@ namespace CIAO "EXCEPTION: InvalidConnection exception caught: %s, %s\n", ex.name.in (), ex.reason.in ())); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } catch (const CORBA::Exception& ex) { ACE_ERROR ((LM_ERROR, "CORBA EXCEPTION: %s\n", ex._info().fast_rep())); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } catch (...) { ACE_ERROR ((LM_ERROR, "EXCEPTION: non-CORBA exception\n")); - throw (Deployment_Failure ("")); + throw Deployment_Failure (""); } return CORBA::string_dup (plan.UUID.in ()); |