summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp b/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
index bd8f1ee2fd1..76dc3704ee8 100644
--- a/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
+++ b/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
@@ -8,24 +8,24 @@ Policy::Policy (CORBA::ULong val)
{
}
-Policy::~Policy (void)
+Policy::~Policy ()
{
}
CORBA::ULong
-Policy::value (void)
+Policy::value ()
{
return this->value_;
}
CORBA::PolicyType
-Policy::policy_type (void)
+Policy::policy_type ()
{
return Test::POLICY_TYPE;
}
CORBA::Policy_ptr
-Policy::copy (void)
+Policy::copy ()
{
CORBA::Policy_ptr p;
ACE_NEW_THROW_EX (p,
@@ -36,6 +36,6 @@ Policy::copy (void)
}
void
-Policy::destroy (void)
+Policy::destroy ()
{
}