summaryrefslogtreecommitdiff
path: root/TAO/examples
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 03:41:43 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 03:41:43 +0000
commitd9ac9d8349a6d40ffcd957833f391afa63333661 (patch)
treeb7295663931a4a5de7f001b5df5cd94420c02828 /TAO/examples
parent20863d55e76be02b9fcda0ea2318f09f264a217c (diff)
downloadATCD-d9ac9d8349a6d40ffcd957833f391afa63333661.tar.gz
Double parans about the throw specs
Diffstat (limited to 'TAO/examples')
-rw-r--r--TAO/examples/Simple/grid/Grid_i.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/examples/Simple/grid/Grid_i.cpp b/TAO/examples/Simple/grid/Grid_i.cpp
index d2b52051312..a46d8fbe68c 100644
--- a/TAO/examples/Simple/grid/Grid_i.cpp
+++ b/TAO/examples/Simple/grid/Grid_i.cpp
@@ -52,7 +52,7 @@ Grid_i::set (CORBA::Short x,
CORBA::Short y,
CORBA::Long value,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
if (x < 0
|| y < 0
@@ -69,7 +69,7 @@ CORBA::Long
Grid_i::get (CORBA::Short x,
CORBA::Short y,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
if (x < 0
|| y < 0
@@ -84,14 +84,14 @@ Grid_i::get (CORBA::Short x,
CORBA::Short
Grid_i::width (CORBA::Environment &A)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->width_;
}
CORBA::Short
Grid_i::height (CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->height_;
}
@@ -99,7 +99,7 @@ Grid_i::height (CORBA::Environment &)
void
Grid_i::width (CORBA::Short x,
CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
this->width_ = x;
}
@@ -107,7 +107,7 @@ Grid_i::width (CORBA::Short x,
void
Grid_i::height (CORBA::Short y,
CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
this->height_ = y;
}
@@ -116,7 +116,7 @@ Grid_i::height (CORBA::Short y,
void
Grid_i::destroy (CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
// Delete the array.
@@ -142,7 +142,7 @@ Grid_Factory_i::orb (CORBA::ORB_ptr o)
void
Grid_Factory_i::shutdown (CORBA::Environment &)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) %s\n",
@@ -179,7 +179,7 @@ Grid_ptr
Grid_Factory_i::make_grid (CORBA::Short width,
CORBA::Short height,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
Grid_i *grid_ptr = 0;