summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-01-17 18:43:27 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-01-17 18:43:27 +0000
commit7e46f609c632847e3222dabf6bb869b303582d92 (patch)
treebefc116a30b70e0d094cd585b49d26b35aca9064
parent731b7d621073995d60978097d431582b153fe12c (diff)
downloadATCD-7e46f609c632847e3222dabf6bb869b303582d92.tar.gz
ChangeLogTag:Thu Jan 17 10:40:57 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/Security/QOPPolicy.cpp6
3 files changed, 15 insertions, 6 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 2ff8d80a8f2..6f39733bc69 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Thu Jan 17 10:40:57 2002 Ossama Othman <ossama@uci.edu>
+
+ * orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp
+ (policy_type, destroy, trust):
+ * orbsvcs/orbsvcs/Security/QOPPolicy.cpp
+ (policy_type, destroy, qop):
+
+ Fixed unused parameter warnings.
+
Thu Jan 17 10:30:41 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/Security_ORBInitializer.cpp (pre_init):
diff --git a/TAO/orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp b/TAO/orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp
index a0cec544909..33af822572f 100644
--- a/TAO/orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp
+++ b/TAO/orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp
@@ -17,7 +17,7 @@ TAO_EstablishTrustPolicy::~TAO_EstablishTrustPolicy (void)
}
CORBA::PolicyType
-TAO_EstablishTrustPolicy::policy_type (TAO_ENV_SINGLE_ARG_DECL)
+TAO_EstablishTrustPolicy::policy_type (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return Security::SecEstablishTrustPolicy;
@@ -41,13 +41,13 @@ TAO_EstablishTrustPolicy::copy (TAO_ENV_SINGLE_ARG_DECL)
}
void
-TAO_EstablishTrustPolicy::destroy (TAO_ENV_SINGLE_ARG_DECL)
+TAO_EstablishTrustPolicy::destroy (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
Security::EstablishTrust
-TAO_EstablishTrustPolicy::trust (TAO_ENV_SINGLE_ARG_DECL)
+TAO_EstablishTrustPolicy::trust (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->trust_;
diff --git a/TAO/orbsvcs/orbsvcs/Security/QOPPolicy.cpp b/TAO/orbsvcs/orbsvcs/Security/QOPPolicy.cpp
index 3b306b5aaf8..7cf77b5dc24 100644
--- a/TAO/orbsvcs/orbsvcs/Security/QOPPolicy.cpp
+++ b/TAO/orbsvcs/orbsvcs/Security/QOPPolicy.cpp
@@ -16,7 +16,7 @@ TAO_QOPPolicy::~TAO_QOPPolicy (void)
}
CORBA::PolicyType
-TAO_QOPPolicy::policy_type (TAO_ENV_SINGLE_ARG_DECL)
+TAO_QOPPolicy::policy_type (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return Security::SecQOPPolicy;
@@ -40,13 +40,13 @@ TAO_QOPPolicy::copy (TAO_ENV_SINGLE_ARG_DECL)
}
void
-TAO_QOPPolicy::destroy (TAO_ENV_SINGLE_ARG_DECL)
+TAO_QOPPolicy::destroy (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
Security::QOP
-TAO_QOPPolicy::qop (TAO_ENV_SINGLE_ARG_DECL)
+TAO_QOPPolicy::qop (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->qop_;