summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-11-04 03:21:29 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-11-04 03:21:29 +0000
commitd44af03e4ea184134a2d3f58fda4078c013003cf (patch)
tree4d4c0eb9ebd99eff07556cc5d909cb4e270428d8
parent15f3606c5b85562832a1bd1d07c6071fbd9d0acf (diff)
downloadATCD-d44af03e4ea184134a2d3f58fda4078c013003cf.tar.gz
ChangeLogTag:Sun Nov 3 19:13:49 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog13
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h4
3 files changed, 17 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 518892b1eff..d0e1acf8041 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,16 @@
+Sun Nov 3 19:13:49 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
+ (member_count):
+
+ Corrected exception specification so that it matches the method
+ definition's exception specification.
+
+ * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
+ (member_count):
+
+ Removed extra line (cosmetic change).
+
Sun Nov 3 16:02:55 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvsc/Makefile.PortableGroup:
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
index 6ce4110da71..e3bff6639f4 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
@@ -91,7 +91,7 @@ TAO_PG_ObjectGroupManager::add_member (
member,
check_type_id
ACE_ENV_ARG_PARAMETER);
-
+
}
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
index 9a2e2497583..de3f67ba168 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
@@ -196,7 +196,9 @@ public:
/// Return the number of members in the given object group.
CORBA::ULong member_count (PortableGroup::ObjectGroup_ptr group
- ACE_ENV_ARG_DECL);
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException,
+ PortableGroup::ObjectGroupNotFound));
/// Set the POA to use when converting object group references to
/// ObjectIds.